mirror of
https://github.com/mperham/connection_pool
synced 2023-03-27 23:22:21 -04:00
Move timed_queue, prepare for release
This commit is contained in:
parent
f4aef6acc0
commit
751be41b6b
4 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
HEAD
|
||||
0.1.0
|
||||
--------
|
||||
|
||||
- More precise timeouts
|
||||
- More precise timeouts and better error message
|
||||
- ConnectionPool now subclasses BasicObject so `method_missing` is more effective.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require 'connection_pool/timed_queue'
|
||||
require 'timed_queue'
|
||||
|
||||
# Generic connection pool class for e.g. sharing a limited number of network connections
|
||||
# among many threads. Note: Connections are eager created.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
class ConnectionPool
|
||||
VERSION = "0.0.3"
|
||||
VERSION = "0.1.0"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue