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
Adding exception handling around the openziti.load method to catch a load failure with the intention of correcting the error and attempting to load again does not work and just hangs in the second call to load.
Sample code:
try:
openziti.load('myIdentity.json')
except:
# Fix the error with the file and try againopenziti.load('myIdentity.json') # Hangs here
The text was updated successfully, but these errors were encountered:
Adding exception handling around the
openziti.load
method to catch a load failure with the intention of correcting the error and attempting to load again does not work and just hangs in the second call toload
.Sample code:
The text was updated successfully, but these errors were encountered: