I ran into an issue with the following code
where
self.tracer was not defined.
|
if not isinstance(self.log, AI4EAppInsights): |
|
self.tracer = self.log.tracer |
Above L42, I guess you could just add self.tracer = None to prevent this. Would you like me to make the PR?
I ran into an issue with the following code
AIforEarth-API-Development/Containers/base-py/ai4e_api_tools/ai4e_service.py
Line 139 in 18b33b3
self.tracerwas not defined.AIforEarth-API-Development/Containers/base-py/ai4e_api_tools/ai4e_service.py
Lines 42 to 43 in 18b33b3
Above L42, I guess you could just add
self.tracer = Noneto prevent this. Would you like me to make the PR?