Closed felipeZ closed 6 years ago
I have solved the issue by replacing the called to ContextManager in the session_cache module
# from mdstudio.api.context import ContextManager
import mdstudio
...
def _call(self, uri, request):
return self.session.call('mdstudio.cache.endpoint.{}'.format(uri), request, claims=mdstudio.api.context.ContextManager.get('call_context').get_cache_claims(self.cache_type))
When calling the main.py function for my component I got the following error:
When I try to load the class ContextManager from ipython I got the following error:
Is this a circular import issue? Have you run into the same problem?