Fix: dynamically fetch the session daemon port
[lttng-ust.git] / liblttng-ust-jul / org / lttng / ust / jul / LTTngThread.java
index a64c6a9b36c06888b0b9f04961b3b4724127b41e..b3aa0e6ea0a9000b5279501aa01aee09488158c6 100644 (file)
@@ -23,11 +23,10 @@ public class LTTngThread implements Runnable {
        private LTTngLogHandler handler;
        private LTTngTCPSessiondClient sessiondClient;
 
-       public LTTngThread(String host, int port, LTTngLogHandler handler,
+       public LTTngThread(String host, LTTngLogHandler handler,
                        Semaphore registerSem) {
                this.handler = handler;
-               this.sessiondClient = new LTTngTCPSessiondClient(host, port,
-                               registerSem);
+               this.sessiondClient = new LTTngTCPSessiondClient(host, registerSem);
        }
 
        @Override
This page took 0.025715 seconds and 4 git commands to generate.