mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.hashring: Normalize indentation to tabs
This commit is contained in:
parent
8ae67fb1fd
commit
b45a4a4247
1 changed files with 8 additions and 8 deletions
|
@ -1,13 +1,13 @@
|
|||
local function generate_ring(nodes, num_replicas, hash)
|
||||
local new_ring = {};
|
||||
for _, node_name in ipairs(nodes) do
|
||||
for replica = 1, num_replicas do
|
||||
local replica_hash = hash(node_name..":"..replica);
|
||||
new_ring[replica_hash] = node_name;
|
||||
table.insert(new_ring, replica_hash);
|
||||
end
|
||||
end
|
||||
table.sort(new_ring);
|
||||
for _, node_name in ipairs(nodes) do
|
||||
for replica = 1, num_replicas do
|
||||
local replica_hash = hash(node_name..":"..replica);
|
||||
new_ring[replica_hash] = node_name;
|
||||
table.insert(new_ring, replica_hash);
|
||||
end
|
||||
end
|
||||
table.sort(new_ring);
|
||||
return new_ring;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue