Explorar o código

fix timeout error

ming %!s(int64=3) %!d(string=hai) anos
pai
achega
b516c91c72
Modificáronse 1 ficheiros con 4 adicións e 10 borrados
  1. 4 10
      api/main.py

+ 4 - 10
api/main.py

@@ -134,16 +134,10 @@ def get_url_type(url):
 def gen_video(name_hash,name,text_content, image_urls,avatar,client_id):
     c = rpyc.connect("localhost", 8878)
     remote_svc = c.root
-    try:
-        my_answer = remote_svc.call_video(name_hash,name,text_content, image_urls,avatar,client_id) # method call
-    except:
-        print('maybe time out error')
-    while True:
-        print('waiting...')
-        if os.path.exists(tmp_video_dir+name_hash+'.mp4'):
-            break
-        time.sleep(5)
-        print('waiting...')
+
+
+    my_answer = remote_svc.call_video(name_hash,name,text_content, image_urls,avatar,client_id) # method call
+   
     shutil.copy(tmp_video_dir+name_hash+'.mp4',video_dest+name_hash+'.mp4')
     os.remove(tmp_video_dir+name_hash+'.mp4')