Skip to content

Commit e6c8587

Browse files
committed
Fix - backend url in handlesso
1 parent f0c4664 commit e6c8587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19308,7 +19308,7 @@ func HandleSSO(resp http.ResponseWriter, request *http.Request) {
1930819308
backendUrl := os.Getenv("SSO_REDIRECT_URL")
1930919309

1931019310
if len(backendUrl) == 0 && project.Environment == "onprem" {
19311-
backendUrl = "http://localhost:3001"
19311+
backendUrl = "http://localhost:3000"
1931219312
}
1931319313

1931419314
if len(backendUrl) == 0 && len(os.Getenv("BASE_URL")) > 0 {

0 commit comments

Comments
 (0)