kimmking commented on issue #7566:
URL: https://github.com/apache/shardingsphere/issues/7566#issuecomment-696698724


   `isValid` has been supported in master branch now:
   ```
       @Override
       public final boolean isValid(final int timeout) throws SQLException {
           for (Connection connection : cachedConnections.values()) {
               if (!connection.isValid(timeout)) {
                   return false;
               }
           }
           return true;
       }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to