Skip to content

Commit

Permalink
replace sleep with read
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex committed Jan 21, 2025
1 parent 58fd72a commit c544eb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/test/resources/process-context/log-order.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
echo "out1"
sleep 1
read -r -t 1
echo "err1" >&2
sleep 1
read -r -t 1
echo "out2"
sleep 1
read -r -t 1
echo "err2" >&2

0 comments on commit c544eb5

Please sign in to comment.