Skip to content

Commit

Permalink
Fix #1478, Fix cmdlet dispatcher performance issue (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
littlezhou committed Jan 30, 2018
1 parent d7f68b8 commit 08f5bf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public void run() {
break;
} else {
cmdletPreExecutionProcess(launchCmdlet);
if (dispatcher.dispatch(launchCmdlet)) {
if (!dispatcher.dispatch(launchCmdlet)) {
if (LOG.isDebugEnabled()) {
LOG.debug("Stop this round dispatch due : " + launchCmdlet);
}
Expand Down

0 comments on commit 08f5bf2

Please sign in to comment.