disable sql timeout

This commit is contained in:
James Seibel
2024-05-09 23:21:35 -05:00
parent 7cfcfb0695
commit 4575701bd4
@@ -39,7 +39,8 @@ import java.util.concurrent.locks.ReentrantLock;
*/
public abstract class AbstractDhRepo<TKey, TDTO extends IBaseDTO<TKey>> implements AutoCloseable
{
public static final int TIMEOUT_SECONDS = 30;
/** a value of 0 means there's no timeout */
public static final int TIMEOUT_SECONDS = 0;
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
private static final ConcurrentHashMap<String, Connection> CONNECTIONS_BY_CONNECTION_STRING = new ConcurrentHashMap<>();