Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/252#discussion_r167409002
--- Diff:
guacamole-common/src/main/java/org/apache/guacamole/websocket/GuacamoleWebSocketTunnelEndpoint.java
---
@@ -109,15 +113,15 @@ public void onOpen(final Session session,
EndpointConfig config) {
// Get tunnel
tunnel = createTunnel(session, config);
if (tunnel == null) {
- closeConnection(session,
GuacamoleStatus.RESOURCE_NOT_FOUND);
+ closeConnection(session,
GuacamoleStatus.RESOURCE_NOT_FOUND, null);
--- End diff --
Sounds good.
---