Commit e5638b51 authored by ZZH's avatar ZZH

remove inv eval verify 2024-12-30 15:54

parent bca64107
...@@ -95,6 +95,10 @@ def is_need_verify(path): ...@@ -95,6 +95,10 @@ def is_need_verify(path):
log.info(f"{path} not need verify") log.info(f"{path} not need verify")
return False return False
if re.search("/inv-eval", path):
log.info(f"{path} not need verify")
return False
# if re.search("/qkadmin", path): # if re.search("/qkadmin", path):
# log.info(f"{path} not need verify") # log.info(f"{path} not need verify")
# return False # return False
...@@ -161,6 +165,9 @@ def is_need_auth_verify_cid(path): ...@@ -161,6 +165,9 @@ def is_need_auth_verify_cid(path):
if re.search("/qkadmin", path): if re.search("/qkadmin", path):
log.info(f"{path} not need verify") log.info(f"{path} not need verify")
return False return False
if re.search("/inv-eval", path):
log.info(f"{path} not need verify")
return False
return True return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment