You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For issues or feature requests related to the code in this repository
file a Github issue.
If this is a feature request make sure the issue title starts with "FR:".
For general technical questions, post a question on StackOverflow
with the firebase tag.
For general Firebase discussion, use the firebase-talk
google group.
For help troubleshooting your application that does not fall under one
of the above categories, reach out to the personalized Firebase support channel.
What happened? How can we make the problem occur?
It seems firebase_admin_python's dependency on cachecontrol is causing this problem. Basically what I understand is as follows:
firebase-admin-python is dependent on cachecontrol library.
cachecontrol is dependent on msgpack which seems to have deprecated "encoding" parameter in msgpack.loads() method in its recent release (v1.0.0rc1) 10 days ago.
fix has been merged to cachecontrol, but there seem to be no releases since 2018.
so if I pipenv-install firebase-admin-python, cachecontrol==0.12.5 is installed; a version without the fix.
hence the error below. See the error log.
related links that might help you understand the problem
I am running django/nginx in docker container with docker-compose. Funny this is if I send the request with firebase token in header directly to django container, this error does not show up. This error only arises if I send the request to nginx container which acts as proxy.
Any plans to fix this? in the meantime how should ideas for quick fix before next release?
Relevant Code:
// TODO(you): code here to reproduce the problem
The text was updated successfully, but these errors were encountered:
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
This issue does not have all the information required by the template. Looks like you forgot to fill out some sections. Please update the issue with more information.
rollue
changed the title
Reporting error caused by dependencies on unmaintained libarary: "cachecontrol" and "msgpack"
Reporting error caused by dependencies on external libararies: "cachecontrol" and "msgpack"
Dec 22, 2019
[READ] Step 1: Are you in the right place?
file a Github issue.
with the firebase tag.
google group.
of the above categories, reach out to the personalized
Firebase support channel.
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
Steps to reproduce:
What happened? How can we make the problem occur?
It seems firebase_admin_python's dependency on cachecontrol is causing this problem. Basically what I understand is as follows:
msgpack
which seems to have deprecated "encoding" parameter inmsgpack.loads()
method in its recent release (v1.0.0rc1) 10 days ago.related links that might help you understand the problem
DeprecationWarning in use of msgpack #198
issue related to above
This could be a description, log/console output, etc.
I am running django/nginx in docker container with docker-compose. Funny this is if I send the request with firebase token in header directly to django container, this error does not show up. This error only arises if I send the request to nginx container which acts as proxy.
Any plans to fix this? in the meantime how should ideas for quick fix before next release?
Relevant Code:
The text was updated successfully, but these errors were encountered: