]> git.openstreetmap.org Git - chef.git/commitdiff
tile: Fix Mac ARM compatibility 2nd bit
authorGrant Slater <github@firefishy.com>
Sat, 3 Dec 2022 11:08:23 +0000 (11:08 +0000)
committerGrant Slater <github@firefishy.com>
Sat, 3 Dec 2022 11:08:23 +0000 (11:08 +0000)
cookbooks/tile/templates/default/render-lowzoom.erb
cookbooks/tile/templates/default/update-lowzoom.erb

index c031813996da110addd58ab0b865889635f3f613..779730d1e8ead6785fe3579afc4ccd40f1183ca3 100644 (file)
@@ -18,7 +18,7 @@ function update_<%= style %>
     --socket=/var/run/renderd/renderd.sock \
     --num-threads=<%= [4, node.dig('cpu', 'total').to_i - 1, node.dig('cpu', 'cores').to_i - 1].max %> \
     --map="<%= style %>" \
-    --max-load=<%= node[:cpu][:total] %> \
+    --max-load=<%= [4, node.dig('cpu', 'total').to_i, node.dig('cpu', 'cores').to_i].max %> \
     --min-zoom=0 --max-zoom=12
 }
 
index c70374de91c4d08de9c988d8372fc56ffbe7bb1c..4f2821dba4ead51c6674a1dffc4ec07538ba5495 100644 (file)
@@ -14,7 +14,7 @@ function update_tiles
     --socket=/var/run/renderd/renderd.sock \
     --num-threads=<%= [4, node.dig('cpu', 'total').to_i - 1, node.dig('cpu', 'cores').to_i - 1].max %> \
     --map="<%= @style %>" \
-    --max-load=<%= node[:cpu][:total] %> \
+    --max-load=<%= [4, node.dig('cpu', 'total').to_i, node.dig('cpu', 'cores').to_i].max %> \
     --min-zoom=0 --max-zoom=12
 }