CPU / worker.py
Timo123432345443's picture
Update worker.py
547bf71 verified
raw
history blame contribute delete
286 Bytes
import ray
import time
print("🐱 Worker startet...")
try:
ray.init(address="ray: https://dealtime-describe-completely-standing.trycloudflare.com")
print("✅ CONNECTED!!!")
except Exception as e:
print("❌ FEHLER:", e)
# verhindert Crash
while True:
time.sleep(10)