Skip to content

Commit

Permalink
Use single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
jsotofernandez committed Nov 13, 2024
1 parent 34a8f22 commit 71574d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/libraries/minio_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def member_of_replication_cluster?(node_name)
def add_to_minio_replication(s3_hosts, node_name)
s3_nodes = s3_hosts.dup
s3_nodes.delete(node_name)
s3_nodes = s3_nodes.join(" ") + " " + node_name
s3_nodes = s3_nodes.join(' ') + ' ' + node_name
system("/usr/local/bin/mcli admin replicate add #{s3_nodes}")
end

Expand Down

0 comments on commit 71574d5

Please sign in to comment.