Skip to content

Commit 329c9a4

Browse files
committed
fixes for loadbalancing nased on user names
1 parent 053c371 commit 329c9a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/synapse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
name: synapse
3-
version: 0.21.1
3+
version: 0.22.0

charts/synapse/scripts/synapse.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local function get_hash_key_from_path(path)
55
end
66

77
local function parse_username_from_token(token)
8-
local _, _, username = string.find(token, "[^_]+_([^+]+)_.*$")
8+
local _, _, username = string.find(token, "[^_]+_([^_]+)_.*$")
99
if username ~= nil then
1010
return username
1111
end

0 commit comments

Comments
 (0)