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
After each message gets published we're setting the connection to nilhere
Because of this, each time another publish comes in, we're creating a new connection and outputting "Redialing Datadog" here
This could probably be optimized a bit, however, I don't think there is anything inherently wrong with it, we probably just don't need that output message.
The text was updated successfully, but these errors were encountered:
It's actually setting the connection to nilonly if there was an error writing on the connection, so it will know to redial. I'd say get rid of the log message though.
After each message gets published we're setting the connection to
nil
hereBecause of this, each time another publish comes in, we're creating a new connection and outputting "Redialing Datadog" here
This could probably be optimized a bit, however, I don't think there is anything inherently wrong with it, we probably just don't need that output message.
The text was updated successfully, but these errors were encountered: