There are 3 comments.
 
 
Kubernetes Helm Charts for XWiki / cid:jira-generated-image-avatar-2f830646-e7f5-48ae-a067-e24a299fa89a HELM-108 Open

Error: sed: -e expression #1, char 86: unknown option to `s'

 
View issue   ยท   Add comment
 

3 comments

 
cid:jira-generated-image-avatar-9497ec5a-7ea4-4354-bb04-d6edaba111af Sabst on 19/Jan/26 19:20
 
Found it: I have a setting for the logout page like:
{code:java}
xwiki.authentication.logoutpage=(/|/[^/]+/|/wiki/[^/]+/)logout/*{code}
Not sure at this point if I can escape at least The problem is no more visible when escaping the / | characters from my side but the regression of this part of the chart certainly needs to be fixed ( using % as the sed separator will probably work but is that enough? \| ).
 
Note:
The logout configuration is useful in my case as the redirection does not occur by default backward compatibility problem remains .
 
 
cid:jira-generated-image-avatar-9497ec5a-7ea4-4354-bb04-d6edaba111af Sabst on 19/Jan/26 19:22
 
Found it: I have a setting for the logout page like:
{code:java}
xwiki.authentication.logoutpage=(/|/[^/]+/|/wiki/[^/]+/)logout/*{code}
The problem is no more visible when escaping the | characters (\
\ |).
The backward compatibility problem remains.
 
 
cid:jira-generated-image-avatar-9497ec5a-7ea4-4354-bb04-d6edaba111af Sabst on 19/Jan/26 19:23
 
Found it: I have a setting for the logout page like:
{code:java}
xwiki.authentication.logoutpage=(/|/[^/]+/|/wiki/[^/]+/)logout/*{code}
The problem is no more visible when escaping the | characters
(\\|) with a backslash .
The backward compatibility problem remains.