Skip to content

Commit

Permalink
Missing condition to display the commands as executing host
Browse files Browse the repository at this point in the history
  • Loading branch information
Acanthostega committed Sep 24, 2013
1 parent ba69e81 commit 870382c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timers/executers.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func DisplayWorkingHosts(hosts []*formatter.Host) {
for _, host := range hosts {

// if the host is connected and is marked as executing command
if host.IsConnected {
if host.IsConnected && host.IsWorking {

// Display the name of the host and the command being executed
formatter.ColoredPrintln(
Expand Down

0 comments on commit 870382c

Please sign in to comment.