File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
- __version__ = "3.0.7 "
1
+ __version__ = "3.0.8 "
Original file line number Diff line number Diff line change @@ -66,7 +66,14 @@ def _populate_cx_edges_with_timestamps(
66
66
for node , node_ts in zip (nodes , nodes_ts ):
67
67
CX_EDGES [node ] = {}
68
68
timestamps = timestamps_d [node ]
69
- timestamps .add (node_ts )
69
+ cx_edges_d_node_ts = _get_cx_edges_at_timestamp (node , response , node_ts )
70
+
71
+ edges = np .concatenate ([empty_2d ] + list (cx_edges_d_node_ts .values ()))
72
+ partner_parent_ts_d = get_parent_timestamps (cg , edges [:, 1 ])
73
+ for v in partner_parent_ts_d .values ():
74
+ timestamps .update (v )
75
+ CX_EDGES [node ][node_ts ] = cx_edges_d_node_ts
76
+
70
77
for ts in sorted (timestamps ):
71
78
if ts < earliest_ts :
72
79
ts = earliest_ts
You can’t perform that action at this time.
0 commit comments