summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands
diff options
context:
space:
mode:
authorJenny Shen <[email protected]>2023-02-16 16:14:36 -0500
committerHiroshi SHIBATA <[email protected]>2023-04-12 11:57:43 +0900
commitc7a8d63df84c4884cb30cc58292ec36efabfabbb (patch)
treec4adabe5606f2199b78e55873db288124a5e56d2 /lib/rubygems/commands
parentcd60113faa41384cba31781eeb8fa51ea3ed2355 (diff)
Terminate interaction when rescuing WebauthnVerificationError during wait_for_otp
Co-authored-by: Betty Li <[email protected]>
Diffstat (limited to 'lib/rubygems/commands')
-rw-r--r--lib/rubygems/commands/owner_command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/commands/owner_command.rb b/lib/rubygems/commands/owner_command.rb
index eb66c510a9..fce32aca3e 100644
--- a/lib/rubygems/commands/owner_command.rb
+++ b/lib/rubygems/commands/owner_command.rb
@@ -101,7 +101,7 @@ permission to.
rescue Gem::WebauthnVerificationError => e
raise e
rescue StandardError
- # ignore
+ # ignore early exits to allow for completing the iteration of all owners
end
end