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 3abd621 commit f48b061Copy full SHA for f48b061
taskvine_report/__init__.py
@@ -4,7 +4,7 @@
4
Visualization and analysis tool for TaskVine execution logs.
5
"""
6
7
-__version__ = "3.2.6.5"
+__version__ = "3.2.6.6"
8
__author__ = "Collaborative Computing Lab (CCL), University of Notre Dame"
9
__email__ = "[email protected]"
10
taskvine_report/src/data_parser.py
@@ -1004,7 +1004,7 @@ def postprocess_debug(self):
1004
1005
# set the min and max time
1006
self.MIN_TIME = self.manager.when_first_task_start_commit
1007
- self.MAX_TIME = self.manager.time_end
+ self.MAX_TIME = self.manager.time_end if self.manager.time_end else self.manager.current_max_time
1008
1009
self.time_domain = [0, self.MAX_TIME - self.MIN_TIME]
1010
# pkl store the time domain
0 commit comments