Skip to content

Commit 9c97824

Browse files
committed
Move MAXKEYS to advanced
1 parent 9d430eb commit 9c97824

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

modules/auxiliary/gather/memcached_extractor.rb

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,15 @@ def initialize(info = {})
2323

2424
register_options(
2525
[
26-
Opt::RPORT(11211),
26+
Opt::RPORT(11211)
27+
], self.class
28+
)
29+
30+
register_advanced_options(
31+
[
2732
OptInt.new('MAXKEYS', [ true, 'Maximum number of keys to be pulled from a slab', 100] )
28-
], self.class)
33+
], self.class
34+
)
2935
end
3036

3137
def max_keys

0 commit comments

Comments
 (0)