Update docker.py

This commit is contained in:
qiaofeng1227 2023-05-15 11:06:36 +08:00 committed by GitHub
parent 5ddf376946
commit 9709a30ec0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ def check_appid_exist(app_id):
def check_appid_include_rq(app_id):
message = ""
code = None
if app_id == None:
if app_id == None or app_id == "undefine":
code = const.ERROR_CLIENT_PARAM_BLANK
message = "AppID is null"
elif re.match('^[a-z0-9]+_[a-z0-9]+$', app_id) == None: