Skip to content

Commit

Permalink
Fix remaining deprecation warnings
Browse files Browse the repository at this point in the history
Commit d552328 already fixed most
deprecation warnings, but a few were overlooked.
  • Loading branch information
Sandro Mathys committed Sep 30, 2013
1 parent 2c6f659 commit 40df54d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/memcached_sysconfig.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ CACHESIZE="<%= scope.function_memcached_max_memory([@max_memory]) %>"
OPTIONS="<%
result = []
if @verbosity
result << '-' + verbosity
result << '-' + @verbosity
end
if @lock_memory
result << '-k'
end
if @listen_ip
result << '-l ' + listen_ip
result << '-l ' + @listen_ip
end
if @udp_port
result << '-U ' + udp_port
result << '-U ' + @udp_port
end
if @item_size
result << '-I ' + item_size
result << '-I ' + @item_size
end
result << '-t ' + processorcount
result << '-t ' + @processorcount
-%><%= result.join(' ') -%>"

0 comments on commit 40df54d

Please sign in to comment.