1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

test replication test fail on github

Signed-off-by: adi_holden <adi@dragonflydb.io>
This commit is contained in:
adi_holden 2023-04-20 11:02:40 +03:00
parent 3bfb994526
commit b007b049d3
2 changed files with 4 additions and 4 deletions

View file

@ -48,8 +48,8 @@ jobs:
cd ${GITHUB_WORKSPACE}/tests cd ${GITHUB_WORKSPACE}/tests
pip install -r dragonfly/requirements.txt pip install -r dragonfly/requirements.txt
export DRAGONFLY_PATH="${GITHUB_WORKSPACE}/build/dragonfly" # used by PyTests export DRAGONFLY_PATH="${GITHUB_WORKSPACE}/build/dragonfly" # used by PyTests
pytest -xvs dragonfly/replication_test.py::test_disconnect_replica --df alsologtostderr --df enable_multi_shard_sync=true pytest -xvs dragonfly/replication_test.py --df alsologtostderr --df enable_multi_shard_sync=true
pytest -xvs dragonfly/replication_test.py::test_disconnect_replica --df alsologtostderr --df enable_multi_shard_sync=false pytest -xvs dragonfly/replication_test.py --df alsologtostderr --df enable_multi_shard_sync=false
- name: Send notification on failure - name: Send notification on failure
if: failure() || cancelled() if: failure() || cancelled()

View file

@ -493,9 +493,9 @@ class DflySeeder:
pipe.execute_command(*cmd) pipe.execute_command(*cmd)
try: try:
print("before exec") # print("before exec")
await pipe.execute() await pipe.execute()
print("after exec") # print("after exec")
except Exception as e: except Exception as e:
raise SystemExit(e) raise SystemExit(e)
queue.task_done() queue.task_done()