Skip to content

Commit f136179

Browse files
Damodarkoushik-das
authored andcommitted
CLOUDSTACK-7886: cloudstackoperations like deployvm,deleteNW are failing if CS fail to contact rabbit mq server. This is happening in case of Async API calls.
Signed-off-by: Koushik Das <koushik@apache.org>
1 parent 0c45c96 commit f136179

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

server/src/com/cloud/api/ApiServer.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,8 @@ private void handleAsyncJobPublishEvent(String subject, String senderAddress, Ob
304304
try {
305305
eventBus.publish(event);
306306
} catch (EventBusException evx) {
307-
String errMsg = "F" +
308-
"" +
309-
"ailed to publish async job event on the the event bus.";
307+
String errMsg = "Failed to publish async job event on the the event bus.";
310308
s_logger.warn(errMsg, evx);
311-
throw new CloudRuntimeException(errMsg);
312309
}
313310
}
314311

0 commit comments

Comments
 (0)