فهرست منبع

Delete network.py

qiaofeng1227 2 سال پیش
والد
کامیت
e90a68ba47
1فایلهای تغییر یافته به همراه0 افزوده شده و 15 حذف شده
  1. 0 15
      appmanage/api/utils/network.py

+ 0 - 15
appmanage/api/utils/network.py

@@ -1,15 +0,0 @@
-import os, io, sys, platform, shutil, time, json, datetime
-from api.utils import shell_execute
-
-# 根据.env文件提供的port,找出能正常启动的最小port
-def get_start_port(port):
-    use_port = port
-    while True:
-        cmd = "netstat -ntlp | grep -v only"
-        output = shell_execute.execute_command_output_all(cmd)
-        if output["result"].find(use_port)==-1:
-            break
-        else:
-            use_port = str(int(use_port)+1)
-
-    return use_port