We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d96c470 commit 93c77b6Copy full SHA for 93c77b6
src/browsergym/workarena/install.py
@@ -790,7 +790,7 @@ def disable_password_policies():
790
set_sys_property(
791
instance=SNowInstance(), property_name="glide.apply.password_policy.on_login", value="false"
792
)
793
- # The following is not supported on developer portal instances
+ # Exception handling since this property is sometimes read-only on some instances
794
try:
795
796
instance=SNowInstance(),
@@ -799,7 +799,7 @@ def disable_password_policies():
799
800
except Exception:
801
logging.warning(
802
- "Skipping: failed to set sys property "
+ "Warning: Failed to set sys property "
803
"'glide.authenticate.api.user.reset_password.mandatory'. Continuing.",
804
exc_info=True,
805
0 commit comments