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 e1b27e8 commit 3c86d2cCopy full SHA for 3c86d2c
mem3_helper.py
@@ -58,7 +58,7 @@ def connect_the_dots(names):
58
59
ordinal_of_this_pod = int(os.getenv("HOSTNAME").split("-")[-1])
60
expected_ordinals = set(range(0, ordinal_of_this_pod))
61
- found_ordinals = Set()
+ found_ordinals = set()
62
for name in names:
63
# Get the podname, get the stuff after last - and convert to int
64
found_ordinals.add(int(name.split(".",1)[0].split("-")[-1]));
0 commit comments