You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by GitBox <gi...@apache.org> on 2021/01/19 08:16:38 UTC

[GitHub] [cloudstack] sureshanaparti commented on a change in pull request #4300: [WIP] engine: add support for VMware 7.0 dependency and hypervisor capability

sureshanaparti commented on a change in pull request #4300:
URL: https://github.com/apache/cloudstack/pull/4300#discussion_r559985294



##########
File path: services/console-proxy/server/src/main/java/com/cloud/consoleproxy/ConsoleProxy.java
##########
@@ -537,10 +545,14 @@ public static ConsoleProxyNoVncClient getNoVncViewer(ConsoleProxyClientParam par
             Session session) throws AuthenticationException {
         boolean reportLoadChange = false;
         String clientKey = param.getClientMapKey();
+        String ticketAcquired = param.getTicketAcquired();
+        if (StringUtils.isNotBlank(ticketAcquired)) {
+            s_logger.info(">>>>> NO VNC Viewer received ticket acquired: " + param.getTicketAcquired());
+        }
         synchronized (connectionMap) {
             ConsoleProxyClient viewer = connectionMap.get(clientKey);
             if (viewer == null || viewer.getClass() != ConsoleProxyNoVncClient.class) {
-                authenticationExternally(param);
+                //authenticationExternally(param);

Review comment:
       remove the comment if not required here




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org