Merge pull request #1971 from taosdata/feature/add-tag-and-alter-table-cases

fixup: fix fuser call.
This commit is contained in:
Shengliang Guan 2020-05-20 16:50:48 +08:00 committed by GitHub
commit a2f08cfb40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ if __name__ == "__main__":
processID = subprocess.check_output(psCmd, shell=True) processID = subprocess.check_output(psCmd, shell=True)
fuserCmd = "fuser -k -n tcp 6030" fuserCmd = "fuser -k -n tcp 6030"
subprocess.check_output(fuserCmd, shell=True) os.system(fuserCmd)
tdLog.info('stop All dnodes') tdLog.info('stop All dnodes')
sys.exit(0) sys.exit(0)