garbageman 0.2.4 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/VERSION +1 -1
- data/garbageman.gemspec +1 -1
- data/lib/garbageman/config.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTU0OGJhZGVmOGJhNDE4MTBlODA0ODBmZTgyOTkxNDhlMjJiOGVjMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NmFjYWYzMDdkNjUwYWQ3YjhiMzk1MDMyMjJkYjFjMTViZjlkYmRkMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
M2JhZjkzNjdlNTg5YmFmZmMzOTQzYzFkMjFjYTE3NzZmNTdlMTY5ZTg4OThh
|
10
|
+
ZjgxZDYwZjRlNjAxNjliYzIyYmFmNWE3ZmRkZjZjYzNjZTdjMTJjY2QyZTcx
|
11
|
+
NWMwMDNmYTg3MzY3ZTMyNzUyMTk2ZDA2ZTViNzFkMmQ4YmQxOTM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDIwMjZlZTU3ZTk1OGUwMjlmZjhhY2NkZmFmNWVhNTg4ZjY1ZGMzZjQ3ZGI3
|
14
|
+
ZDg1YzJmYjU3MjllNDNhOGUyYjNmMjAzMWM1YzU1OGMwMjJmOTg4NGRhYTY5
|
15
|
+
MGVmYjBlYWQ2YmJjMDlkNmM5MDYxN2EzZmEzNjBhZmE1NjYwMDM=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.6
|
data/garbageman.gemspec
CHANGED
data/lib/garbageman/config.rb
CHANGED
@@ -44,8 +44,8 @@ module GarbageMan
|
|
44
44
|
def self.min_servers_to_disable_gc=(n); @@min_servers_to_disable_gc = n; end
|
45
45
|
|
46
46
|
# if we have not GC in 40 seconds turn back on GC
|
47
|
-
@@max_time_without_gc =
|
47
|
+
@@max_time_without_gc = 60
|
48
48
|
def self.max_time_without_gc; @@max_time_without_gc; end
|
49
|
-
def self.max_time_without_gc=(time);
|
49
|
+
def self.max_time_without_gc=(time); @@max_time_without_gc = time; end
|
50
50
|
end
|
51
51
|
end
|