Merge pull request #14865 from taosdata/test/nonzero_exit_code
ci: explicitly exit 0
This commit is contained in:
commit
489417daa5
|
@ -65,6 +65,7 @@ ulimit -c unlimited
|
||||||
|
|
||||||
$TIMEOUT_CMD $cmd
|
$TIMEOUT_CMD $cmd
|
||||||
RET=$?
|
RET=$?
|
||||||
|
echo "cmd exit code: $RET"
|
||||||
|
|
||||||
if [ $RET -ne 0 ]; then
|
if [ $RET -ne 0 ]; then
|
||||||
pwd
|
pwd
|
||||||
|
|
|
@ -370,3 +370,4 @@ if __name__ == "__main__":
|
||||||
tdLog.info("not need to query")
|
tdLog.info("not need to query")
|
||||||
if conn is not None:
|
if conn is not None:
|
||||||
conn.close()
|
conn.close()
|
||||||
|
sys.exit(0)
|
||||||
|
|
Loading…
Reference in New Issue