* fix typos

* ci

---------

Co-authored-by: YuBaoku <49938469+EmmonsCurse@users.noreply.github.com>
This commit is contained in:
co63oc
2025-09-12 11:04:38 +08:00
committed by GitHub
parent 82dab8a91a
commit 8466219ec8
14 changed files with 22 additions and 22 deletions

View File

@@ -204,8 +204,8 @@ class EngineClient:
f"preprocess time cost {preprocess_cost_time}"
)
self.vaild_parameters(task)
api_server_logger.debug(f"Recieve task: {task}")
self.valid_parameters(task)
api_server_logger.debug(f"Receive task: {task}")
try:
if not self.enable_mm:
self.zmq_client.send_json(task)
@@ -215,7 +215,7 @@ class EngineClient:
api_server_logger.error(f"zmq_client send task error: {e}, {str(traceback.format_exc())}")
raise EngineError(str(e), error_code=400)
def vaild_parameters(self, data):
def valid_parameters(self, data):
"""
Validate stream options
"""