mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUACAMOLE-504: Avoid unnecessary use of instanceof.
This commit is contained in:
		| @@ -259,18 +259,16 @@ public abstract class GuacamoleHTTPTunnelServlet extends HttpServlet { | ||||
|  | ||||
|         // Catch any thrown guacamole exception and attempt to pass within the | ||||
|         // HTTP response, logging each error appropriately. | ||||
|         catch (GuacamoleClientException e) { | ||||
|             logger.warn("HTTP tunnel request rejected: {}", e.getMessage()); | ||||
|             sendError(response, e.getStatus().getGuacamoleStatusCode(), | ||||
|                     e.getStatus().getHttpStatusCode(), e.getMessage()); | ||||
|         } | ||||
|         catch (GuacamoleException e) { | ||||
|             if (e instanceof GuacamoleClientException) { | ||||
|                 logger.warn("HTTP tunnel request rejected: {}", e.getMessage()); | ||||
|                 sendError(response, e.getStatus().getGuacamoleStatusCode(), | ||||
|                         e.getStatus().getHttpStatusCode(), e.getMessage()); | ||||
|             } | ||||
|             else { | ||||
|                 logger.error("HTTP tunnel request failed: {}", e.getMessage()); | ||||
|                 logger.debug("Internal error in HTTP tunnel.", e); | ||||
|                 sendError(response, e.getStatus().getGuacamoleStatusCode(), | ||||
|                         e.getStatus().getHttpStatusCode(), "Internal server error."); | ||||
|             } | ||||
|             logger.error("HTTP tunnel request failed: {}", e.getMessage()); | ||||
|             logger.debug("Internal error in HTTP tunnel.", e); | ||||
|             sendError(response, e.getStatus().getGuacamoleStatusCode(), | ||||
|                     e.getStatus().getHttpStatusCode(), "Internal server error."); | ||||
|         } | ||||
|  | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user