How do I troubleshoot why the worker has no tools deployed? #503
-
I did the deploy of the recently implemented toolkit following https://docs.arcade.dev/home/serve-tools/arcade-deploy guide and having worker.toml file created. However the worker doesn't seem to capture the toolkit. How do I troubleshoot what might I have missed? ![]() ![]() |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Repo reference: https://github.com/amurauyou/arcade-polygon-toolkit |
Beta Was this translation helpful? Give feedback.
-
Hey @amurauyou, we previously required packages to be prefixed with |
Beta Was this translation helpful? Give feedback.
-
Hi @amurauyou after looking at your toolkit, you have an error on line 34 in utils.py. The double quotes surrounding your secret are tripping up Python. Try This was not obvious though. We'll be working to improve error messages so that this type of thing can be caught early! |
Beta Was this translation helpful? Give feedback.
Hi @amurauyou after looking at your toolkit, you have an error on line 34 in utils.py. The double quotes surrounding your secret are tripping up Python. Try
"Authorization": f"Bearer {context.get_secret('POLYGON_API_KEY')}"
instead.This was not obvious though. We'll be working to improve error messages so that this type of thing can be caught early!