Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Jun 15, 2023
1 parent 0930612 commit 20960d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 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,9 @@ public class ProcessedExecCli :
break
}
is RetrySignal.RetryDelayed -> {
echo("Processor script exited with 2, rerunning the command after ${retrySignal.delay}...")
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 20960d3

Please sign in to comment.