Merge pull request #14865 from taosdata/test/nonzero_exit_code

ci: explicitly exit 0
This commit is contained in:
Hui Li 2022-07-14 10:11:43 +08:00 committed by GitHub
commit 489417daa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -65,6 +65,7 @@ ulimit -c unlimited
$TIMEOUT_CMD $cmd
RET=$?
echo "cmd exit code: $RET"
if [ $RET -ne 0 ]; then
pwd

View File

@ -370,3 +370,4 @@ if __name__ == "__main__":
tdLog.info("not need to query")
if conn is not None:
conn.close()
sys.exit(0)