Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUBY-3622 - Use SessionEnded error consistently #2919

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/mongo/error/session_ended.rb
Original file line number Diff line number Diff line change
@@ -21,9 +21,9 @@ class Error
# Session was previously ended.
#
# @since 2.7.0
class SessionEnded < Error
class SessionEnded < InvalidSession
def initialize
super("The session was ended and cannot be used")
super('The session was ended and cannot be used. Please create a new session.')
end
end
end
7 changes: 1 addition & 6 deletions lib/mongo/session.rb
Original file line number Diff line number Diff line change
@@ -297,11 +297,6 @@ def session_id
'of the client owning this operation. Please only use this session for operations through its parent ' +
'client.'.freeze

# Error message describing that the session cannot be used because it has already been ended.
#
# @since 2.5.0
SESSION_ENDED_ERROR_MSG = 'This session has ended and cannot be used. Please create a new one.'.freeze

# Error message describing that sessions are not supported by the server version.
#
# @since 2.5.0
@@ -1251,7 +1246,7 @@ def set_operation_time(result)
end

def check_if_ended!
raise Mongo::Error::InvalidSession.new(SESSION_ENDED_ERROR_MSG) if ended?
raise Mongo::Error::SessionEnded if ended?
end

def check_matching_cluster!(client)
Loading
Oops, something went wrong.