Spaces:
Running
Running
Tu Nombre commited on
Commit ·
f9f6bba
1
Parent(s): fd068ab
delay 30s antes pipeline
Browse files- cliente_template.py +1 -1
cliente_template.py
CHANGED
|
@@ -108,7 +108,7 @@ async def pipeline():
|
|
| 108 |
def start():
|
| 109 |
loop = asyncio.new_event_loop()
|
| 110 |
asyncio.set_event_loop(loop)
|
| 111 |
-
loop.run_until_complete(pipeline())
|
| 112 |
|
| 113 |
threading.Thread(target=start, daemon=True).start()
|
| 114 |
|
|
|
|
| 108 |
def start():
|
| 109 |
loop = asyncio.new_event_loop()
|
| 110 |
asyncio.set_event_loop(loop)
|
| 111 |
+
time.sleep(30); loop.run_until_complete(pipeline())
|
| 112 |
|
| 113 |
threading.Thread(target=start, daemon=True).start()
|
| 114 |
|