We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ad146 commit b148ae7Copy full SHA for b148ae7
omnistat/collector_rms.py
@@ -183,7 +183,7 @@ def updateMetrics(self):
183
184
# Check for user supplied annotations
185
if self.__annotationsEnabled:
186
- updateAnnotations(jobid=results["RMS_JOB_ID"])
+ self.updateAnnotations(results["RMS_JOB_ID"])
187
188
# Case when no job detected
189
else:
@@ -193,7 +193,7 @@ def updateMetrics(self):
193
194
return
195
196
- def updateAnnotations(jobid):
+ def updateAnnotations(self, jobid):
197
# Reset annotations when a new job is running
198
if jobid != self.__annotationsJobID:
199
self.__spans = {}
0 commit comments