<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 10:50:42 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Magnolia - Issue tracker</title>
    <link>https://jira.magnolia-cms.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-uk</language>    <build-info>
        <version>9.4.2</version>
        <build-number>940002</build-number>
        <build-date>19-01-2023</build-date>
    </build-info>


<item>
            <title>[MGNLSSO-56] Session lost &amp; authentication broken with CookieProcessor sameSiteCookies=&quot;Strict&quot;</title>
                <link>https://jira.magnolia-cms.com/browse/MGNLSSO-56</link>
                <project id="15486" key="MGNLSSO">Single Sign On</project>
                    <description>&lt;p&gt;Latest magnolia-tomcat bundles come with this parameter included in the context.xml:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&amp;lt;CookieProcessor sameSiteCookies=&lt;span class=&quot;code-quote&quot;&gt;&quot;Strict&quot;&lt;/span&gt; /&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This parameter was also included in Magnolia Cloud by default: &lt;a href=&quot;https://git.magnolia-cms.com/projects/OD/repos/mgnl-images/commits/fab9d7975f613f77bda1638ea73ea0c2214e966f#cloud-base/roles/magnolia-server/templates/context.xml&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.magnolia-cms.com/projects/OD/repos/mgnl-images/commits/fab9d7975f613f77bda1638ea73ea0c2214e966f#cloud-base/roles/magnolia-server/templates/context.xml&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will provoke the session to be lost between steps 1 and 2 of openID&#8217;s&#160;&lt;a href=&quot;https://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;authorization code flow&lt;/a&gt;&#160;implementation. If the session is lost, step 2 cant be achieved, so the code sent by google to magnolia (as a background call) is never handled and the token cant be retrieved from google&#8217;s token endpoint, which would be the step 3.&lt;br/&gt;
 This is the part of code from SSOLoginHandler for step 2 relying on a session attribute (already set in step 1):&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; LoginResult handle(HttpServletRequest request, HttpServletResponse response) {
        OICServiceRequest oicServiceRequest = (OICServiceRequest) request.getSession().getAttribute(&lt;span class=&quot;code-quote&quot;&gt;&quot;ssoAuthenticationServiceRequest&quot;&lt;/span&gt;);        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (oicServiceRequest != &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) {
...
        }
        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; LoginResult.NOT_HANDLED;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;since a NOT_HANDLED is returned, Magnolia will continue to the next login handler which is FormLogin instead of continue with OpenId flow (retrieving the token, etc)&lt;/p&gt;

&lt;p&gt;Here is the log taken from cloud simulator with session debugger enabled:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
2021-05-20 13:18:40,425 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@49c25143
    ssoAuthenticationServiceRequest = info.magnolia.connector.sso.oic.service.OICServiceRequest@7c24be21
    csrf = CfrFh6UyLV9mtURZGZuDDnGAk2A
-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-20 13:18:40,425 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-20 13:18:40,426 INFO  ty.auth.callback.SSOAuthenticationRedirectCallback: Connecting with SSO authentication service googleOpenIDConnectTemplate
2021-05-20 13:18:40,426 DEBUG ty.auth.callback.SSOAuthenticationRedirectCallback: Requested URL: /
2021-05-20 13:18:47,516 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@4dea3181
-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
----------2021-05-20 13:18:47,517 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-20 13:18:47,517 INFO  ty.auth.callback.SSOAuthenticationRedirectCallback: Connecting with SSO authentication service googleOpenIDConnectTemplate
2021-05-20 13:18:47,518 DEBUG ty.auth.callback.SSOAuthenticationRedirectCallback: Requested URL: /.auth?state=98g1hh2l5balifitprl5vfn93u&amp;amp;code=4%2F0AY0e-g4aWzOqjIcDmGtD_sQ0ViaUoSyRvDF-rKkeRWCfsKSRigZLUyJ1UqGTNBrgQu9PLQ&amp;amp;scope=email+openid+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&amp;amp;authuser=0&amp;amp;hd=magnolia-cms.com&amp;amp;prompt=consent
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;Dockerfile, context.xml and jaas.config files used attached.&#160;&lt;/p&gt;</description>
                <environment>Latest Magnolia Cloud Simulator with Magnolia 6.2.8 bundle, sso 2.7.0 and GoogleOpenId configured</environment>
        <key id="99061">MGNLSSO-56</key>
            <summary>Session lost &amp; authentication broken with CookieProcessor sameSiteCookies=&quot;Strict&quot;</summary>
                <type id="1" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10883&amp;avatarType=issuetype">Bug</type>
                                            <priority id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/neutral.gif">Neutral</priority>
                        <status id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="7">Not an issue</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="ebguilbert">Edwin Guilbert</reporter>
                        <labels>
                    </labels>
                <created>Thu, 20 May 2021 15:48:54 +0200</created>
                <updated>Tue, 29 Aug 2023 12:23:20 +0200</updated>
                            <resolved>Tue, 29 Aug 2023 12:23:20 +0200</resolved>
                                                                    <component>sso-connector</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>8</watches>
                                                                                                                <comments>
                            <comment id="262467" author="ebguilbert" created="Thu, 20 May 2021 16:52:00 +0200"  >&lt;p&gt;I just tested the same project (non dx-core-cloud based) with a magnolia tomcat bundle and can confirm that the issue is present for dx-core project using sso 2.7.x&lt;/p&gt;</comment>
                            <comment id="262526" author="ebguilbert" created="Fri, 21 May 2021 09:50:23 +0200"  >&lt;p&gt;Discussion about sameSiteCookies: &lt;a href=&quot;https://magnolia-cms.slack.com/archives/CDF2T239Q/p1621497875010500&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://magnolia-cms.slack.com/archives/CDF2T239Q/p1621497875010500&lt;/a&gt;&#160;&lt;/p&gt;

&lt;p&gt;and&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://magnolia-cms.slack.com/archives/CKDSMM5CJ/p1621526307008100&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://magnolia-cms.slack.com/archives/CKDSMM5CJ/p1621526307008100&lt;/a&gt;&#160;&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="262531" author="ebguilbert" created="Fri, 21 May 2021 09:57:49 +0200"  >&lt;p&gt;Tomcat&apos;s context.xml will probably be reverted to &quot;lax&quot; instead of &quot;strict&quot;: &lt;a href=&quot;https://magnolia-cms.slack.com/archives/CKDSMM5CJ/p1621576718001400&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://magnolia-cms.slack.com/archives/CKDSMM5CJ/p1621576718001400&lt;/a&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="262554" author="ebguilbert" created="Fri, 21 May 2021 12:52:42 +0200"  >&lt;p&gt;Tried with context.xml sameSiteCookies=&quot;lax&quot; and it partially worked, i.e the authentication worked but the redirect is till broken, so one has to manually enter the requested URL in the browser again. It appears the redirect URI is still lost further down the business logic (after the authentication is done).&lt;/p&gt;

&lt;p&gt;Probably around here in&#160;SSOAuthenticationLoginFilter:&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-comment&quot;&gt;// SSO authenticaion request add originally requested URL
&lt;/span&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (StringUtils.isNotBlank(requestedUrl)) {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; request.getSession().setAttribute(&lt;span class=&quot;code-quote&quot;&gt;&quot;ssoAuthenticationRedirectUrl&quot;&lt;/span&gt;, requestedUrl);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; }
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-comment&quot;&gt;// &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; the store token option is enabled, put the request object into the session to retrieve token information later
&lt;/span&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (oicSettings != &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt; &amp;amp;&amp;amp; oicSettings.isStoreToken()) {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; request.getSession().setAttribute(&lt;span class=&quot;code-quote&quot;&gt;&quot;ssoRequestObj&quot;&lt;/span&gt;, oicServiceRequest);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; }
&#160; &#160; &#160; &#160; &#160; &#160; &#160; MgnlContext.login(subject);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; AuditLoggingUtil.log(loginResult, request);


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-comment&quot;&gt;// Send response via redirect to follow PRG (Post/Redirect/Get) pattern to prevent logging in via Back button after logout. http://en.wikipedia.org/wiki/Post/Redirect/Get
&lt;/span&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-comment&quot;&gt;// Applied only in &lt;span class=&quot;code-keyword&quot;&gt;case&lt;/span&gt; authentication is done with POST request.
&lt;/span&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (loginResult.getStatus() == LoginResult.STATUS_SUCCEEDED_REDIRECT_REQUIRED) {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-object&quot;&gt;String&lt;/span&gt; location = request.getParameter(FormLogin.PARAMETER_RETURN_TO);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-comment&quot;&gt;// Fallback to current request uri &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; no FormLogin.PARAMETER_RETURN_TO was specified
&lt;/span&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (location == &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; location = request.getRequestURL().toString();
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; }
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; location = RequestDispatchUtil.REDIRECT_PREFIX + location;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; RequestDispatchUtil.dispatch(location, request, response);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt;;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; }&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;The in the&#160;SSOPreserveOriginalURIServlet it won&apos;t find the&#160;ssoAuthenticationRedirectUrl parameter in session:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
        &lt;span class=&quot;code-object&quot;&gt;String&lt;/span&gt; redirectUrl = (&lt;span class=&quot;code-object&quot;&gt;String&lt;/span&gt;)request.getSession().getAttribute(&lt;span class=&quot;code-quote&quot;&gt;&quot;ssoAuthenticationRedirectUrl&quot;&lt;/span&gt;);
&#160; &#160; &#160; &#160; &lt;span class=&quot;code-object&quot;&gt;boolean&lt;/span&gt; isRedirectProvided = StringUtils.isNotBlank(redirectUrl);
&#160; &#160; &#160; &#160; &lt;span class=&quot;code-object&quot;&gt;boolean&lt;/span&gt; isLogoutRequest = StringUtils.isNotBlank(request.getParameter(LogoutFilter.PARAMETER_LOGOUT));


&#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (isRedirectProvided &amp;amp;&amp;amp; !isLogoutRequest) {
&#160; &#160; &#160; &#160; &#160; &#160; log.debug(&lt;span class=&quot;code-quote&quot;&gt;&quot;Redirecting to original request URL {}&quot;&lt;/span&gt;, redirectUrl);


&#160; &#160; &#160; &#160; &#160; &#160; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (StringUtils.endsWith(redirectUrl, ADMINCENTRAL_REDIRECT)) {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; log.debug(&lt;span class=&quot;code-quote&quot;&gt;&quot;AdminCentral redirect, adding fragment so that Magnolia does not mess it up.&quot;&lt;/span&gt;);
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; redirectUrl += SHELL_FRAGMENT;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; log.debug(&lt;span class=&quot;code-quote&quot;&gt;&quot;Redirecting to Magnolia AdminCentral URL {}&quot;&lt;/span&gt;, redirectUrl);
&#160; &#160; &#160; &#160; &#160; &#160; }


&#160; &#160; &#160; &#160; &#160; &#160; response.sendRedirect(redirectUrl);&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;
&#160; &#160; &#160; &#160; }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;Here is the log:&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
2021-05-21 10:39:14,098 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:39:14,098 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:39:14,894 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@411aa3e7
    ssoAuthenticationServiceRequest = info.magnolia.connector.sso.oic.service.OICServiceRequest@2ad41d33
    csrf = JB9nHjdEpojLAqHLZwvRQM2Od3E
-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:39:14,894 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Authorization code received: 4/0AY0e-g6ble6iBROyNsVLVX_nXuox6R-J0i3da9U3vJZP1XsWssZ2mF0mLJtVlD2q7qdTfg
2021-05-21 10:39:15,084 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Received an access token: ya29.a0AfH6SMAz4fgOD79wCf_mKdMB28Hhcce3mM3nYEl7mF8Ld3jQ7vnX2m7RFWN4E_K7kSbSJiPK3q7jKPqubZuwVoSGXsfWL1rBf5Kpvay9yiz24di__6S_BLvn7HmqByn3xd_R_oPC0K7As6jwl_fWnDT9PefJ
2021-05-21 10:39:15,084 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Raw response: {
  &lt;span class=&quot;code-quote&quot;&gt;&quot;access_token&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;ya29.a0AfH6SMAz4fgOD79wCf_mKdMB28Hhcce3mM3nYEl7mF8Ld3jQ7vnX2m7RFWN4E_K7kSbSJiPK3q7jKPqubZuwVoSGXsfWL1rBf5Kpvay9yiz24di__6S_BLvn7HmqByn3xd_R_oPC0K7As6jwl_fWnDT9PefJ&quot;&lt;/span&gt;,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;expires_in&quot;&lt;/span&gt;: 3599,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;refresh_token&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;1&lt;span class=&quot;code-comment&quot;&gt;//03e-J4RoitwghCgYIARAAGAMSNwF-L9IrySuQDsJhjoKS5zxPM0fNpINmVRIx2NWUJO5dDJAbc-x8guHoGIlreWWLEOj7jzY_lXw&quot;&lt;/span&gt;,
&lt;/span&gt;  &lt;span class=&quot;code-quote&quot;&gt;&quot;scope&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;openid https:&lt;span class=&quot;code-comment&quot;&gt;//www.googleapis.com/auth/userinfo.email&quot;&lt;/span&gt;,
&lt;/span&gt;  &lt;span class=&quot;code-quote&quot;&gt;&quot;token_type&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;Bearer&quot;&lt;/span&gt;,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;id_token&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;eyJhbGciOiJSUzI1NiIsImtpZCI6ImQzZmZiYjhhZGUwMWJiNGZhMmYyNWNmYjEwOGNjZWI4ODM0MDZkYWMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI0NjI4Mzc0OTEzMjEtNTJkMGJicHVqMWY5aTl2Z29rMnNlZmZsc2kzZjh2anUuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI0NjI4Mzc0OTEzMjEtNTJkMGJicHVqMWY5aTl2Z29rMnNlZmZsc2kzZjh2anUuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDIzMTUxMDEzNjIwMTA2NDI0OTQiLCJoZCI6Im1hZ25vbGlhLWNtcy5jb20iLCJlbWFpbCI6ImVkd2luLmd1aWxiZXJ0QG1hZ25vbGlhLWNtcy5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6IlJsVFh4TDRhYnp6LVBnVU56RTRGVmciLCJpYXQiOjE2MjE1OTM1NTUsImV4cCI6MTYyMTU5NzE1NX0.JmIX0dS3Wo4VfIRMnkcisBv65ym-dKS94X6yMpU5c7oIt7csSLnxv_FYKCqs9VuUpA8eKl0Uow72ghuSvPhAK7viTgmkDNU7_R7XBi2sRxqW2UbRgE4ObYn1NC_QEw8uCPkNzz7zXyLguSrruX9w81VFcI7CwY_iKvDk3FRcchUA1gBEnUMZbs_gGgdM7NfOSd1-R1HYGA5A-aXeK57BlgS8uDYnYeOmdIQaeqPzW0IVne2dqssKj_GR6hAkPfExOztx-HBVUkpw74psMLOE0c-gWV33Wmj91PCSy8LsgVc9ly43KX1lzUqoznopa1ausObrDzMYsLNs03AczzUK9g&quot;&lt;/span&gt;
}
2021-05-21 10:39:15,084 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Token expires in: 3599 
2021-05-21 10:39:15,085 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Using OpenID Connect &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; SSO authentication.
2021-05-21 10:39:15,100 DEBUG info.magnolia.connector.sso.util.JSONUtils        : Fetched JSON Web Keys &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; OpenID validation:
2021-05-21 10:39:15,100 DEBUG info.magnolia.connector.sso.util.JSONUtils        : {  &lt;span class=&quot;code-quote&quot;&gt;&quot;keys&quot;&lt;/span&gt;: [    {      &lt;span class=&quot;code-quote&quot;&gt;&quot;n&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;z8eiKUkFeJeFWXxqDCCR7R3FATnahlIWPY-drXFv0DOY_GCwmQCZArvNhHjtbJkbpPO9isHykrEkov1B0T8RhsMWalfmOuUCMTGvcc_gJgTtlfTkgY10FOayh0QRQiyW7DfW4SeJijOMrw7JpIyuQ5tHGZEC1L2Y0_-TFSwvWjOhbb8zbNWmI4RnyFtLreHonUM9QUPsjFWJpyLFmCFlu0WqcWDnmnjZTjlAlkm-iWeqfvNs1q3EsDDc9YtNnoy_h8ipi5g-ThG9LIw5KCzMY_C-2BrS9Sa-DsegOht2Y8rew4nEgcqkSokQZpXtDSkSKCkbcaT_rXY7vK13uXg14w&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;alg&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;RS256&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;e&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;AQAB&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;kid&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;d3ffbb8ade01bb4fa2f25cfb108cceb883406dac&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;kty&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;RSA&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;use&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;sig&quot;&lt;/span&gt;    },    {      &lt;span class=&quot;code-quote&quot;&gt;&quot;kid&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;cd49b2ab16e1e9a496c8239dac0dadd09d443012&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;n&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;koT6VAUmOwqXQoyMQkk0F1JJd81H7ksx7FHfKtqXvdrDt9LLr1IDJ-CFpbbn4SuJeYQcUo-lHA1_vbbtgCBSyd_H86WGGARlPrsqFF-hbBBauhUQuXMxFxJKAiQS0WIbFvDkwRaNiGIMYQvzwDKbms5tCqZ04T5Qez9v64i3RlU8-upJxG9duzeXQjrnC5uJeeG-9fwE06RRZ1Y8Uul63Lpxicw5Alyd5HQIzF5vSSwjqdVrBUJAToxuTIqIHR24omrz1f7Jf97wy2U7KUoSnytauyaZtph7RmsUPVMFr9fGMxNVU8tKEVeOYJv-piOc0gfPvIahbv2en0DhOax6OQ&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;alg&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;RS256&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;e&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;AQAB&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;kty&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;RSA&quot;&lt;/span&gt;,      &lt;span class=&quot;code-quote&quot;&gt;&quot;use&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;sig&quot;&lt;/span&gt;    }  ]}
2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : The JWS signature was verified.
2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : JWS payload: {&lt;span class=&quot;code-quote&quot;&gt;&quot;iss&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;https:&lt;span class=&quot;code-comment&quot;&gt;//accounts.google.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;azp&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;aud&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;sub&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;102315101362010642494&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;hd&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia-cms.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;email&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;edwin.guilbert@magnolia-cms.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;email_verified&quot;&lt;/span&gt;:&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;at_hash&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;RlTXxL4abzz-PgUNzE4FVg&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;iat&quot;&lt;/span&gt;:1621593555,&lt;span class=&quot;code-quote&quot;&gt;&quot;exp&quot;&lt;/span&gt;:1621597155}
&lt;/span&gt;2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : JWT claims: JWT Claims Set:{iss=https:&lt;span class=&quot;code-comment&quot;&gt;//accounts.google.com, azp=462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com, aud=462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com, sub=102315101362010642494, hd=magnolia-cms.com, email=edwin.guilbert@magnolia-cms.com, email_verified=&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;, at_hash=RlTXxL4abzz-PgUNzE4FVg, iat=1621593555, exp=1621597155}
&lt;/span&gt;2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : OpenID issuer OK.
2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : OpenID audience OK.
2021-05-21 10:39:15,104 DEBUG info.magnolia.connector.sso.util.JSONUtils        : OpenID issued-at OK
2021-05-21 10:39:15,105 DEBUG info.magnolia.connector.sso.util.JSONUtils        : OpenID expiration OK
2021-05-21 10:39:15,105 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Validation of the OpenID token was successful.
2021-05-21 10:39:15,105 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Assigned the OpenID token: eyJhbGciOiJSUzI1NiIsImtpZCI6ImQzZmZiYjhhZGUwMWJiNGZhMmYyNWNmYjEwOGNjZWI4ODM0MDZkYWMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI0NjI4Mzc0OTEzMjEtNTJkMGJicHVqMWY5aTl2Z29rMnNlZmZsc2kzZjh2anUuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI0NjI4Mzc0OTEzMjEtNTJkMGJicHVqMWY5aTl2Z29rMnNlZmZsc2kzZjh2anUuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDIzMTUxMDEzNjIwMTA2NDI0OTQiLCJoZCI6Im1hZ25vbGlhLWNtcy5jb20iLCJlbWFpbCI6ImVkd2luLmd1aWxiZXJ0QG1hZ25vbGlhLWNtcy5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6IlJsVFh4TDRhYnp6LVBnVU56RTRGVmciLCJpYXQiOjE2MjE1OTM1NTUsImV4cCI6MTYyMTU5NzE1NX0.JmIX0dS3Wo4VfIRMnkcisBv65ym-dKS94X6yMpU5c7oIt7csSLnxv_FYKCqs9VuUpA8eKl0Uow72ghuSvPhAK7viTgmkDNU7_R7XBi2sRxqW2UbRgE4ObYn1NC_QEw8uCPkNzz7zXyLguSrruX9w81VFcI7CwY_iKvDk3FRcchUA1gBEnUMZbs_gGgdM7NfOSd1-R1HYGA5A-aXeK57BlgS8uDYnYeOmdIQaeqPzW0IVne2dqssKj_GR6hAkPfExOztx-HBVUkpw74psMLOE0c-gWV33Wmj91PCSy8LsgVc9ly43KX1lzUqoznopa1ausObrDzMYsLNs03AczzUK9g
2021-05-21 10:39:15,105 DEBUG info.magnolia.connector.sso.login.SSOLoginHandler : Trying to retrieve user information by using the URL: https:&lt;span class=&quot;code-comment&quot;&gt;//www.googleapis.com/oauth2/v1/userinfo
&lt;/span&gt;2021-05-21 10:39:15,161 DEBUG info.magnolia.connector.sso.util.JSONUtils        : Original response body: {
  &lt;span class=&quot;code-quote&quot;&gt;&quot;id&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;102315101362010642494&quot;&lt;/span&gt;,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;email&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;edwin.guilbert@magnolia-cms.com&quot;&lt;/span&gt;,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;verified_email&quot;&lt;/span&gt;: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;,
  &lt;span class=&quot;code-quote&quot;&gt;&quot;picture&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;https:&lt;span class=&quot;code-comment&quot;&gt;//lh3.googleusercontent.com/a-/AOh14GiJUShAp7E9KgrgvINjDynUHs3YJc-jEW57dzuP=s96-c&quot;&lt;/span&gt;,
&lt;/span&gt;  &lt;span class=&quot;code-quote&quot;&gt;&quot;hd&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia-cms.com&quot;&lt;/span&gt;
}2021-05-21 10:39:15,163 DEBUG info.magnolia.connector.sso.util.UserAccountUtils : The payload from the OIDC token can be used to fill user properties.
2021-05-21 10:39:15,163 DEBUG info.magnolia.connector.sso.util.JSONUtils        : Original response body: {&lt;span class=&quot;code-quote&quot;&gt;&quot;iss&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;https:&lt;span class=&quot;code-comment&quot;&gt;//accounts.google.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;azp&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;aud&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;462837491321-52d0bbpuj1f9i9vgok2sefflsi3f8vju.apps.googleusercontent.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;sub&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;102315101362010642494&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;hd&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia-cms.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;email&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;edwin.guilbert@magnolia-cms.com&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;email_verified&quot;&lt;/span&gt;:&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;at_hash&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;RlTXxL4abzz-PgUNzE4FVg&quot;&lt;/span&gt;,&lt;span class=&quot;code-quote&quot;&gt;&quot;iat&quot;&lt;/span&gt;:1621593555,&lt;span class=&quot;code-quote&quot;&gt;&quot;exp&quot;&lt;/span&gt;:1621597155}
&lt;/span&gt;2021-05-21 10:39:15,163 DEBUG info.magnolia.connector.sso.util.UserAccountUtils : Created user properties: {name=edwin.guilbert, id=googleOpenIDConnectTemplate:oauth:102315101362010642494, email=edwin.guilbert@magnolia-cms.com}
2021-05-21 10:39:15,251 DEBUG info.magnolia.connector.sso.util.UserAccountUtils : Creating user with details {name=edwin.guilbert, id=googleOpenIDConnectTemplate:oauth:102315101362010642494, email=edwin.guilbert@magnolia-cms.com}
2021-05-21 10:39:15,251 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:group] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;publishers&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,253 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 2ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /publishers
2021-05-21 10:39:15,254 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:role] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;superuser&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,255 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 1ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /superuser
2021-05-21 10:39:15,260 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:group] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;publishers&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,261 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 1ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /publishers
2021-05-21 10:39:15,261 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:group] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;publishers&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,263 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 2ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /publishers
2021-05-21 10:39:15,263 DEBUG info.magnolia.cms.security.SSOConnectorUserManager: External user object:
2021-05-21 10:39:15,263 DEBUG info.magnolia.cms.security.SSOConnectorUserManager: -- properties: {name=edwin.guilbert, id=googleOpenIDConnectTemplate:oauth:102315101362010642494, email=edwin.guilbert@magnolia-cms.com}
2021-05-21 10:39:15,263 DEBUG info.magnolia.cms.security.SSOConnectorUserManager: -- groups:     [publishers]
2021-05-21 10:39:15,263 DEBUG info.magnolia.cms.security.SSOConnectorUserManager: -- roles:      [workflow-base, publisher, superuser]
2021-05-21 10:39:15,263 DEBUG info.magnolia.cms.security.SSOConnectorUserManager: Please consider effective permissions when assigning groups and roles.
2021-05-21 10:39:15,265 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:role] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;workflow-base&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,266 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 1ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /workflow-base
2021-05-21 10:39:15,267 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:role] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;publisher&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,268 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 1ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /publisher
2021-05-21 10:39:15,269 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:role] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;superuser&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,270 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 1ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /superuser
2021-05-21 10:39:15,274 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Executing query &lt;span class=&quot;code-quote&quot;&gt;&quot;select * from [mgnl:group] where name() = &lt;span class=&quot;code-quote&quot;&gt;&apos;publishers&apos;&lt;/span&gt;&quot;&lt;/span&gt;.
2021-05-21 10:39:15,274 DEBUG nolia.cms.security.RepositoryBackedSecurityManager: Retrieving node took 0ms (isInstallationPhase: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;): path = /publishers
2021-05-21 10:39:15,277 WARN  info.magnolia.cms.filters.ContentTypeFilter       : Content type &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8080/.auth?state=tntof7lrii29s39u5cms7138gf&amp;amp;code=4%2F0AY0e-g6ble6iBROyNsVLVX_nXuox6R-J0i3da9U3vJZP1XsWssZ2mF0mLJtVlD2q7qdTfg&amp;amp;scope=email+openid+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&amp;amp;authuser=0&amp;amp;hd=magnolia-cms.com&amp;amp;prompt=consent is not set.
&lt;/span&gt;2021-05-21 10:39:47,198 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:39:47,198 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:40:44,117 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:40:44,117 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:40:47,148 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:40:47,148 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:41:47,093 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:41:47,093 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:42:15,124 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:42:15,124 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:42:47,041 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:42:47,041 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:43:46,081 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:43:46,081 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
2021-05-21 10:43:46,984 WARN  info.magnolia.debug                               : -- Session found
-- Session attributes :
    Admincentral.lock = java.util.concurrent.locks.ReentrantLock@48f28a40[Unlocked]
    Key[type=info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage, annotation=[none]] = info.magnolia.personalization.trait.storage.StorageAwareTraitCollector$SessionScopedTraitStorage@11bf3b79
    com.vaadin.server.VaadinSession.Admincentral = com.vaadin.server.VaadinSession@22beb61d
    csrf = UEmqRXrh1x7b966Jy7t8SrvBk80
    javax.security.auth.Subject = Subject:
        Principal: info.magnolia.cms.security.ExternalUser@8921633
        Principal: info.magnolia.cms.security.Realm$RealmImpl@179a1
        Principal: RoleListImpl[name=roles,list={superuser,workflow-base,publisher}]
        Principal: GroupListImpl[name=groups,list={owners,publishers}]
        Principal: PrincipalCollectionImpl[name=PrincipalCollection]-- Session is &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; : &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
----------2021-05-21 10:43:46,985 DEBUG info.magnolia.cms.security.auth.login.FormLogin   : handle login &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;The trace &quot;Redirecting to original request URL&quot; from&#160;SSOPreserveOriginalURIServlet is never reached.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="373703" author="efochr" created="Tue, 29 Aug 2023 12:22:55 +0200"  >&lt;p&gt;Documented &lt;a href=&quot;https://docs.magnolia-cms.com/magnolia-sso/3.1.6/troubleshooting.html#_unable_to_log_in_with_an_ssoopenid_setup&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://docs.magnolia-cms.com/magnolia-sso/3.1.6/troubleshooting.html#_unable_to_log_in_with_an_ssoopenid_setup&lt;/a&gt;&lt;br/&gt;
Closing as not an issue.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10030">
                    <name>Cloners</name>
                                                                <inwardlinks description="is cloned by">
                                        <issuelink>
            <issuekey id="100549">MGNLSSO-65</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10160">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="99519">MAGNOLIA-8112</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10020">
                    <name>dependency</name>
                                                                <inwardlinks description="is depended upon by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10010">
                    <name>relation</name>
                                                                <inwardlinks description="is related to">
                                                        </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="80031" name="Dockerfile" size="3419" author="ebguilbert" created="Thu, 20 May 2021 16:08:30 +0200"/>
                            <attachment id="80029" name="context.xml" size="1726" author="ebguilbert" created="Thu, 20 May 2021 16:08:00 +0200"/>
                            <attachment id="84127" name="image-2021-09-06-16-01-50-802.png" size="21847" author="acordero" created="Mon, 6 Sep 2021 16:01:51 +0200"/>
                            <attachment id="80030" name="jaas.config" size="388" author="ebguilbert" created="Thu, 20 May 2021 16:08:20 +0200"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_14166" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Acceptance criteria</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14169" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Bug DoR</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/2</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Steps to reproduce, expected, and actual results filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Affected version filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10111" key="com.atlassian.jira.toolkit:reporterdomain">
                        <customfieldname>Company</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>magnolia-cms.com</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10031" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 30 Aug 2021 13:19:28 +0200</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_12730" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_14151" key="com.atlassian.jira.toolkit:message">
                        <customfieldname>Docu info</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10246" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>MGNLSSO-232</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10061" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comm is not jira-dev</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>false</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10071" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last participant</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>efochr</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            23 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>ebguilbert</customfieldvalue>
            <customfieldvalue>efochr</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|y04t6v:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10244" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14168" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Task DoD</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/6</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Doc/release notes changes? Comment present?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Downstream builds green?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Solution information and context easily available?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>Tests</strong></span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>FixVersion</strong> filled and not yet released</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><rect fill="#EFF4FB" height="17.5" rx="2.5" stroke="#ADBBD0" width="18" x="0.44141" y="3.94141"/></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Architecture Decision Record (<strong>ADR</strong>)</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_12430" key="com.atlassian.teams:rm-teams-custom-field-team">
                        <customfieldname>Team</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[24]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_14145" key="com.intenso.jira.issue-templates:issue-templates-customfield">
                        <customfieldname>Template</customfieldname>
                        <customfieldvalues>
                            


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_15131" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Time in Discovery</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_13933" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Urgency (resolution)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="15724"><![CDATA[Normal]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>