mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
b54cb6cd11
This is a backport of https://github.com/juanfont/headscale/pull/1697 which trims the oidc client_secret_path.
14 lines
373 B
Diff
14 lines
373 B
Diff
diff --git a/hscontrol/config.go b/hscontrol/config.go
|
|
index 0e83a1c..71fbfb0 100644
|
|
--- a/hscontrol/config.go
|
|
+++ b/hscontrol/config.go
|
|
@@ -573,7 +573,7 @@ func GetHeadscaleConfig() (*Config, error) {
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
- oidcClientSecret = string(secretBytes)
|
|
+ oidcClientSecret = strings.TrimSpace(string(secretBytes))
|
|
}
|
|
|
|
return &Config{
|