Fix SessionPool blocking indefinitely after a server outage 修复服务端断开后 SessionPool 永久阻塞的问题 #91
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E Tests in MultiNode IoTDB | |
| on: | |
| push: | |
| branches: [ main, dev/* ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: e2e test in MultiNode IoTDB | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the CSharp module directory | |
| uses: actions/checkout@v4 | |
| - name: Set Docker & Run Test | |
| run: | | |
| docker compose -f docker-compose-2c2d.yml up --build --abort-on-container-exit --remove-orphans | |
| - name: Clean IoTDB & Shut Down Docker | |
| run: | | |
| docker compose -f docker-compose-2c2d.yml down |