Fix the ipfs_config resource to handle integers too

This commit is contained in:
Greg Karékinian
2019-05-07 14:55:41 +02:00
parent f22b7d9b1f
commit 5aa50ecc7e
2 changed files with 3 additions and 3 deletions

View File

@@ -99,10 +99,10 @@ end
# Number of connections that, when exceeded, will trigger a connection GC
# operation
ipfs_config 'Swarm.ConnMgr.HighWater' do
value '10'
value 10
end
# Minimum number of connections to maintain
ipfs_config 'Swarm.ConnMgr.LowWater' do
value '1'
value 1
end