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
LettuceAssert.isTrue(isValidPort(port), String.format("Port out of range: %s", port));
This leads to a lot of object creations because of eager string format parsing. We should introduce LettuceAssert methods accepting a message supplier to defer message construction.
The text was updated successfully, but these errors were encountered:
We face in a few places constructs such as:
This leads to a lot of object creations because of eager string format parsing. We should introduce
LettuceAssert
methods accepting a message supplier to defer message construction.The text was updated successfully, but these errors were encountered: