diff --git a/.github/workflows/collect-logs/action.yaml b/.github/workflows/collect-logs/action.yaml index 75a957d7..56bf7c2d 100644 --- a/.github/workflows/collect-logs/action.yaml +++ b/.github/workflows/collect-logs/action.yaml @@ -15,7 +15,7 @@ runs: tests/collect-logs.sh - name: Upload canary test result - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.name }} path: test diff --git a/pkg/mons/restore_quorum.go b/pkg/mons/restore_quorum.go index f60d8dd9..edce606d 100644 --- a/pkg/mons/restore_quorum.go +++ b/pkg/mons/restore_quorum.go @@ -327,7 +327,7 @@ func validateMonIsUp(ctx context.Context, clientsets *k8sutil.Clientsets, cluste logging.Info("mon %q state is %q", monID, monStatusOut.State) - if monStatusOut.State == "leader" || monStatusOut.State == "peon" { + if monStatusOut.State == "leader" || monStatusOut.State == "peon" || monStatusOut.State == "probing" { return nil }