We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here, the API routes appear to be added directly to /:
/
softpack-core/softpack_core/app.py
Lines 67 to 69 in 13132b4
so ServiceAPI.upload_artifacts ends up at /upload (rather than /service/upload).
ServiceAPI.upload_artifacts
/upload
/service/upload
I would expect api.prefix to be used there somewhere.
api.prefix
API.url() is unused, but appears to also expect prefix to be used:
API.url()
prefix
softpack-core/softpack_core/api.py
Line 50 in 13132b4
The text was updated successfully, but these errors were encountered:
...however, test code expects the current URL:
softpack-core/tests/integration/test_builderupload.py
Line 36 in 13132b4
Sorry, something went wrong.
No branches or pull requests
Here, the API routes appear to be added directly to
/
:softpack-core/softpack_core/app.py
Lines 67 to 69 in 13132b4
so
ServiceAPI.upload_artifacts
ends up at/upload
(rather than/service/upload
).I would expect
api.prefix
to be used there somewhere.API.url()
is unused, but appears to also expectprefix
to be used:softpack-core/softpack_core/api.py
Line 50 in 13132b4
The text was updated successfully, but these errors were encountered: