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

Pinging a closed connection shouldn't be considered a failure #396

Merged
merged 1 commit into from
Sep 9, 2022

Conversation

casperisfine
Copy link
Contributor

When reconnecting, Active Record's MySQL2Adapter closes the old connection, but keep the old connection around:

      def active?
        !!@raw_connection&.ping
      end
# ....
        def connect
          @raw_connection = self.class.new_client(@connection_parameters)
        end

        def reconnect
          @raw_connection&.close
          connect
        end

So if that reconnection attempts fail, we are left with a closed connection in @raw_connection.

The problem is that if the circuit breaker was open, before closing again we move to half-open state, meaning we open again on the first failure.

Since before reconnecting Mysql2Adapter does try to ping the existing connection, we end up reopening the CB immediately because we called ping on a closed connection.

Either way it makes no sense to report a failure in such case, as a closed connection is no indication of a resource having a problem.

@bmansoob @eileencodes @miry

@miry
Copy link
Contributor

miry commented Sep 9, 2022

Tested successfully in shopstatus.

client.close

(ERROR_THRESHOLD * 2).times do
assert_equal(false, client.ping)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
assert_equal(false, client.ping)
refute(client.ping)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hum, I changed it, but I totally disagree with that code, refute check for falsey, not just false. I meant to make sure it was false not just nil.

But whatever.

Copy link
Contributor

@miry miry Sep 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feel free to disable this cop.

I am also don't prefer to use refute.

@miry miry added the Semian label Sep 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants