Skip to content

Commit

Permalink
try with Error Stream redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
tatankat committed Sep 8, 2022
1 parent 37cb7f5 commit affd722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ before_test:
$Counter=0
$Found=$false
While ( ! $Found -and $Counter -lt 60 ) {
$Found = ( docker logs openldap | Select-String -Quiet "\*\* Starting slapd \*\*" )
$Found = ( docker logs openldap 2>&1 | Select-String -Quiet "\*\* Starting slapd \*\*" )
Start-Sleep -Seconds 1
$Counter++
"$Counter Waiting for slapd"
Expand Down

0 comments on commit affd722

Please sign in to comment.