os: add taosd assert kill
This commit is contained in:
parent
43afdc5ad0
commit
c7f2764625
|
@ -61,19 +61,20 @@ goto :eof
|
|||
set tt=%1
|
||||
set tt=%tt:.= %
|
||||
set tt=%tt::= %
|
||||
set tt=%tt: 0= %
|
||||
set /a index=1
|
||||
for %%a in (%tt%) do (
|
||||
if !index! EQU 1 (
|
||||
set /a hh=%%a || echo 11 %%a
|
||||
set /a hh=%%a
|
||||
)^
|
||||
else if !index! EQU 2 (
|
||||
set /a mm=%%a || echo 22 %%a
|
||||
set /a mm=%%a
|
||||
|
||||
)^
|
||||
else if !index! EQU 3 (
|
||||
set /a ss=%%a || echo 33 %%a
|
||||
set /a ss=%%a
|
||||
)
|
||||
set /a index=index+1
|
||||
)
|
||||
set /a _timeTemp=(%hh%*60+%mm%)*60+%ss% || echo 44 hh:%hh% mm:%mm% ss:%ss%
|
||||
set /a _timeTemp=(%hh%*60+%mm%)*60+%ss%
|
||||
goto :eof
|
|
@ -165,7 +165,7 @@ if __name__ == "__main__":
|
|||
|
||||
tdLog.info("Procedures for tdengine deployed in %s" % (host))
|
||||
if platform.system().lower() == 'windows':
|
||||
if (masterIp == ""):
|
||||
if (masterIp == "" and not fileName[0:3] == "udf"):
|
||||
threading.Thread(target=checkRunTimeError,daemon=True).start()
|
||||
tdCases.logSql(logSql)
|
||||
tdLog.info("Procedures for testing self-deployment")
|
||||
|
|
Loading…
Reference in New Issue