We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e3491 commit a47a4f4Copy full SHA for a47a4f4
services/console-proxy/server/src/main/java/com/cloud/consoleproxy/ConsoleProxyNoVncClient.java
@@ -114,6 +114,11 @@ public void run() {
114
updateFrontEndActivityTime();
115
}
116
connectionAlive = client.isVncOverWebSocketConnectionAlive();
117
+ try {
118
+ Thread.sleep(1);
119
+ } catch (Exception e) {
120
+ s_logger.warn("Error on sleep for vnc over websocket", e);
121
+ }
122
} else if (client.isVncOverNioSocket()) {
123
byte[] bytesArr;
124
int nextBytes = client.getNextBytes();
0 commit comments