LinZuXiong
8b4a6bbebb
= javadoc ( #1239 )
6 years ago
Brett Wooldridge
a7e0d359b0
[maven-release-plugin] prepare for next development iteration
9 years ago
Brett Wooldridge
0b485eb91a
[maven-release-plugin] prepare release HikariCP-2.4.4
9 years ago
Brett Wooldridge
3e933042cf
prepare for 2.4.4 release
9 years ago
Brett Wooldridge
d4fc39cd03
[maven-release-plugin] prepare for next development iteration
9 years ago
Brett Wooldridge
c1e69dcf90
[maven-release-plugin] prepare release HikariCP-2.4.4-RC2
9 years ago
Brett Wooldridge
0aff6b4c84
Merge branch 'dev' of https://github.com/brettwooldridge/HikariCP
9 years ago
Nitin
6ed3b18591
small but important fixes
...
removed var
removed resetting, delink validationTimeout from connectionTimeout
one less ref per leak task. renamed start() to schedule()
made some fields final
init of leakDetectionThreshold is not required for other instances
toString using elapsedDisplayString
fix: update poolEntry.lastBorrowed in case NopMetricsTrackerDelegate
fix tests.. try1
setting isCommitStateDirty conditionally in setAutoCommit()
again, avoid calling getNextException :)
setting lastAccess in close()
setting lastAccess required only in ctor and close
removed borrowed time from PoolEntry#toString()
now that lastAccess is moved to close(), moved condition too
one less call to System.nanoTime()
fix. using toNanos()
reverted toNanos() change, got too cumbersome
removed two calls to system time
timeout is not clock time :)
only one call saved but precise 'time taken to borrow'
unlink validation of connectionTimeout with maxLifetime
Merge
Revert
9 years ago
Brett Wooldridge
fc1aea9609
Merge branch 'dev' of https://github.com/nitincchauhan/HikariCP into dev
9 years ago
Brett Wooldridge
bbe692e17a
Merge pull request #574 from guidomedina/gm-intellij-inspections-and-dependency-updates
...
IntelliJ inspections fixes and Maven updates
9 years ago
Brett Wooldridge
aaea7a5d3b
Merge pull request #577 from kleinron/patch-1
...
Update README.md
9 years ago
Nitin
e4b91287cb
simplified call to executeSql()
9 years ago
Nitin
c7e3a8f6cc
moved validateNumerics(), last in validation and is not throwing any
...
exception
9 years ago
Guido Medina
bf83c624ed
IntelliJ inspections fixes, Maven dependencies and plugins updated to latest stable.
9 years ago
Nitin
1b1b63fb3e
renamed ProxyLeakTask as it has nothing to do with 'proxy'
9 years ago
Ron Klein
1f5b6c72ec
Update README.md
...
typo
9 years ago
Nitin
a6486c6417
fix: set last access even for readonly and set isCommitStateDirty wisely
9 years ago
Nitin
4065283619
better variation
9 years ago
Nitin
9d34443031
bug fix: do not call next exception if delegate == closed
9 years ago
Nitin
1a9494596f
test failure fix 3
9 years ago
Nitin
5a41fee89b
test failure fix 2
9 years ago
Nitin
5238d2d4c4
fix test failure
9 years ago
Nitin
bd3e570192
added, corrected validation and test
9 years ago
Nitin
3095b6dc9e
avoid re-setting twice in validation
9 years ago
Nitin
7b1301eeec
removed unused import
9 years ago
Nitin
47ac982cc3
create leak task first and reverted long to int change
9 years ago
Nitin
2e5dd85133
replaced volatile long with int and import static TimeUnit.*
9 years ago
Nitin
0f75311732
using UNINITIALIZED
9 years ago
Nitin
2b6da07d26
cleanup
9 years ago
Nitin
82f7c15ace
changes as suggested
9 years ago
Nitin
838d929067
using 'Failed' like every where else, instead of 'Unable'.
9 years ago
Nitin
6436870bea
separate validationTimeout and connectionTimeout and validation, init
...
networkTimeout only once.
9 years ago
Brett Wooldridge
6e06620976
I didn't like this change, but missed it in the review. Readability over performance in this case. Not to mention that the JVM is likely to hoist the instanceof check and cast out of the loop because it is final invariant.
9 years ago
Brett Wooldridge
1f244af32f
Issue #547 Cleanup and additional logging.
9 years ago
Brett Wooldridge
fb09f10298
Log a warning (once) when it is not possible to honor a validation timeout of less than 1 second.
9 years ago
Brett Wooldridge
0e3677afa3
Use same terminology as other validation log messages, ie. "is less than" or "is more than".
9 years ago
Brett Wooldridge
6b535d542d
Merge branch 'dev' of github.com:nitincchauhan/HikariCP into dev
9 years ago
Nitin
e46034f56d
bugfix: calling sValid() with 0 is infinite. made minimum 1sec
9 years ago
Brett Wooldridge
62fdb2c6c3
Merge pull request #567 from nitincchauhan/dev
...
avoid 'more' exceptions after 'un-recoverable' exception thrown before for the connection
9 years ago
Nitin
e7da3f5dc7
reverted as suggested
9 years ago
Brett Wooldridge
d75c69a51b
[maven-release-plugin] prepare for next development iteration
9 years ago
Brett Wooldridge
d2a348aee8
[maven-release-plugin] prepare release HikariCP-2.4.4-RC1
9 years ago
Brett Wooldridge
d82663b1ca
Prepare RC1
9 years ago
Brett Wooldridge
af2546b837
Prepare RC1
9 years ago
Nitin
0d0eec16ea
moved check to call(), start thread in other loop
9 years ago
Brett Wooldridge
501f2ab1d8
Updated for 2.3.13
9 years ago
Nitin
14ceda3b0c
for re-throwing exception, setting log level to error
9 years ago
Nitin
4c2486e4a0
removed static log, like parent PoolBase. checking instanceof out of
...
loop
9 years ago
Nitin
a007e730be
race test: exit loop on exception
9 years ago
Nitin
d3bc0a155a
it is 1 thread so have queue size that mostly do not require to queue
...
jobs on caller
9 years ago