1
0
mirror of https://github.com/newnius/YAO-optimizer.git synced 2025-12-13 08:26:43 +00:00
This commit is contained in:
2020-05-02 17:22:37 +08:00
parent 86ece935e8
commit b713abb9f1
2 changed files with 3 additions and 3 deletions

View File

@@ -192,8 +192,8 @@ class MyHandler(BaseHTTPRequestHandler):
elif req.path == "/predict":
try:
job = query.get('job')[0],
seq = query.get('model')[0]
job = query.get('job')[0]
seq = query.get('seq')[0]
predict(job, seq)
msg = {'code': 1, 'error': "container not exist"}