You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run build with python3, I am getting the following runtime error:
File "/Users/asi/tools/argo-events-client-java/./hack/swaggerfilter.py", line 29, in main
for k in defs.keys():
RuntimeError: dictionary changed size during iteration
I have to modify the script to:
keys = defs.keys()
if sys.version_info[0] == 3:
keys = defs.copy().keys()
for k in keys:
...
The text was updated successfully, but these errors were encountered:
When I run build with python3, I am getting the following runtime error:
File "/Users/asi/tools/argo-events-client-java/./hack/swaggerfilter.py", line 29, in main
for k in defs.keys():
RuntimeError: dictionary changed size during iteration
I have to modify the script to:
The text was updated successfully, but these errors were encountered: