Fix PG_INCOMPLETE on node outage when allow_net_split is false

This commit is contained in:
Vitaliy Filippov
2025-11-07 21:56:56 +03:00
parent aa1e51de5f
commit 15eef27d44
4 changed files with 53 additions and 1 deletions
+18
View File
@@ -414,6 +414,24 @@ jobs:
echo ""
done
test_degraded:
runs-on: ubuntu-latest
needs: build
container: ${{env.TEST_IMAGE}}:${{github.sha}}
steps:
- name: Run test
id: test
timeout-minutes: 3
run: /root/vitastor/tests/test_degraded.sh
- name: Print logs
if: always() && steps.test.outcome == 'failure'
run: |
for i in /root/vitastor/testdata/*.log /root/vitastor/testdata/*.txt; do
echo "-------- $i --------"
cat $i
echo ""
done
test_rm:
runs-on: ubuntu-latest
needs: build