Forgot to invoke connect()

This commit is contained in:
Michael Jumper
2011-01-02 17:08:46 -08:00
parent 62332e9f65
commit ac96427c08

View File

@@ -41,6 +41,7 @@ public class BasicGuacamoleClientProvider implements GuacamoleClientProvider {
int port = GuacamoleProperties.getIntProperty("guacd-port", null); int port = GuacamoleProperties.getIntProperty("guacd-port", null);
GuacamoleTCPClient client = new GuacamoleTCPClient(hostname, port); GuacamoleTCPClient client = new GuacamoleTCPClient(hostname, port);
client.connect(config);
// Return authorized session // Return authorized session
return client; return client;