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 3c86d2c commit 1ba295dCopy full SHA for 1ba295d
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