Skip to content

Commit 08dea59

Browse files
committed
[installer] Change cookie name
1 parent 30a4280 commit 08dea59

File tree

1 file changed

+1
-1
lines changed
  • install/installer/pkg/components/auth

1 file changed

+1
-1
lines changed

install/installer/pkg/components/auth/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ func GetConfig(ctx *common.RenderContext) ([]corev1.Volume, []corev1.VolumeMount
5858
func cookieNameFromDomain(domain string) string {
5959
// replace all non-word characters with underscores
6060
derived := regexp.MustCompile(`[\W_]+`).ReplaceAllString(domain, "_")
61-
return "_" + derived + "_jwt_"
61+
return "_" + derived + "_jwt2_"
6262
}

0 commit comments

Comments
 (0)