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
{{ message }}
This repository was archived by the owner on Apr 15, 2024. It is now read-only.
in base/consul.py functions
sesson create
session renew
session destroy
session list
session node
token is not passed in the http requets and it gives ACL permission denied error when using with consul server with ACL enabled .
adding the code
token = self.agent.token
if token:
params.append(('token', token))
in the function resolves the issues and passes the ACL token in the http requests calls .
without these ACL error is observed in these function calls .