Skip to content

Commit 3c86d2c

Browse files
author
Robert Gartman
committed
no message
1 parent e1b27e8 commit 3c86d2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mem3_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def connect_the_dots(names):
5858

5959
ordinal_of_this_pod = int(os.getenv("HOSTNAME").split("-")[-1])
6060
expected_ordinals = set(range(0, ordinal_of_this_pod))
61-
found_ordinals = Set()
61+
found_ordinals = set()
6262
for name in names:
6363
# Get the podname, get the stuff after last - and convert to int
6464
found_ordinals.add(int(name.split(".",1)[0].split("-")[-1]));

0 commit comments

Comments
 (0)