Skip to content

Commit

Permalink
Use duration in message
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Jun 15, 2023
1 parent e8c3d17 commit 0930612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/slack/cli/exec/ProcessedExecCli.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class ProcessedExecCli :
break
}
is RetrySignal.RetryDelayed -> {
echo("Processor script exited with 2, rerunning the command after 1 minute...")
echo("Processor script exited with 2, rerunning the command after ${retrySignal.delay}...")
// TODO add option to reclaim memory?
Thread.sleep(retrySignal.delay.inWholeMilliseconds)
val secondResult = executeCommand(cmd, tmpDir)
Expand Down

0 comments on commit 0930612

Please sign in to comment.