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 65622c7 commit 0a42f1dCopy full SHA for 0a42f1d
codeguru_profiler_agent/model/profile.py
@@ -140,6 +140,6 @@ def average_thread_weight(self):
140
def __str__(self):
141
return "Profile(profiling_group_name=" + self.profiling_group_name \
142
+ ", start=" + to_iso(self.start) \
143
- + ', end=' + to_iso(self.end) \
+ + ', end=' + "not set" if self.end is None else to_iso(self.end) \
144
+ ', duration_ms=' + str(self.get_active_millis_since_start()) \
145
+ ')'
0 commit comments