jhappy
RRunPod
•Created by jhappy on 11/4/2024 in #⚡|serverless
Serverless pod tasks stay "IN_QUEUE" forever
Nope, that's not the issue. But I did find the real one:
My file is called runpod.py. When I do
import runpod
it tries to import itself rather than the package runpod. Isn't python wonderful? 😛15 replies
RRunPod
•Created by jhappy on 11/4/2024 in #⚡|serverless
Serverless pod tasks stay "IN_QUEUE" forever
Whelp, no luck with that fix, it's still broken. In the logs I can now see "worker exited with code 1" a few times but no logs beyond that.
Tho in one of the workers I saw "in runpod.py..." printed a couple times as it appeared to turn on and off. no "started handler!". Debugging guidance would be greatly appreciated
15 replies
RRunPod
•Created by jhappy on 11/4/2024 in #⚡|serverless
Serverless pod tasks stay "IN_QUEUE" forever
Figured out issue 1: mistyped
if __name__ == 'main':
, should be __main__
not main
. Checking if this works now15 replies