mirror of
https://github.com/mperham/connection_pool
synced 2023-03-27 23:22:21 -04:00
Merge pull request #6 from elabs/superclass-mismatch
Fix superclass mismatch for ConnectionPool in version.rb
This commit is contained in:
commit
2eac7dcaa6
2 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
require 'connection_pool/version'
|
||||||
require 'timed_queue'
|
require 'timed_queue'
|
||||||
|
|
||||||
# Generic connection pool class for e.g. sharing a limited number of network connections
|
# Generic connection pool class for e.g. sharing a limited number of network connections
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
class ConnectionPool
|
class ConnectionPool < BasicObject
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.0"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue