<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Thu Feb 08 22:26:00 UTC 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 add field=key&field=summary to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>FOLIO Jira</title>
    <link>https://folio-org.atlassian.net</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>1001.0.0-SNAPSHOT</version>
        <build-number>100246</build-number>
        <build-date>07-02-2024</build-date>
    </build-info>

<item>
            <title>[MODAES-4] HTTP compression is not supported</title>
                <link>https://folio-org.atlassian.net/browse/MODAES-4</link>
                <project id="10252" key="MODAES">ARCHIVED: mod-aes</project>
                    <description>&lt;p&gt;When the client sends a compression header to a module and the module supports the compression header, then it will send the data back through Okapi compressed. When mod-aes receives the data, it does not decompress the body, so the compressed JSON is added as the AES message body which is not useful.&lt;/p&gt;

&lt;p&gt;Compression header example:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;accept-encoding: gzip, deflate, br
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;mod-aes output:&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-javascript&quot;&gt;
  &lt;span class=&quot;code-quote&quot;&gt;&quot;body&quot;&lt;/span&gt; : {
    &lt;span class=&quot;code-quote&quot;&gt;&quot;content&quot;&lt;/span&gt; : &lt;span class=&quot;code-quote&quot;&gt;&quot;\u001F&#65533;\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000&#65533;S[K&#65533;0\u0014~&#65533;W&#65533;&#65533;j$&#65533;L/&#65533;&#65533;\u0011&#65533;uY&#409;\u0007&#65533;EN&#65533;&#65533;\u001AH&#65533;!MW\u0006&#65533;&#65533;n&#65533;f.&#65533;/k\u001F\u0002&#65533;&#65533;~&#65533;sH&#65533;&#65533;\b&#65533;&#65533;&#65533;&#65533;V&#65533;&#65533;&#65533;GdN\u001E&#603;&#65533;\u001D!&#65533;&#127;&#65533;&#65533;\u0002&#65533;eH&#760;&#65533;i&#65533;&#65533;&#65533;,&#65533;I^&#65533;\\\u0014\u0005\u0000O&#65533;&#65533;I&#65533;A&#65533;&#65533;(eD&#65533;&#65533;&#65533;&#65533;\u0002&#65533;&#65533;&#525;&#65533;&#65533;;&#65533;&#65533;&#65533;&amp;amp;&#65533;&#1214;&#65533;\u0000\u0018&#65533;&#65533;\u0015&#65533;A&#65533;?\u0000&#65533;FOk\u0006&amp;lt;&#65533;&#65533;&#65533;&#65533;&#65533;3S_&#65533;o&#65533;&#65533;+\u0015&#65533;N&#343;Z)&#65533;=\u0007/O&#65533;&#65533;Z&#65533;*|&#65533;&#65533;&#65533;&#65533;W&#65533;.&#65533;&#65533;&#65533;,&#65533;&#127;&#65533;&#65533;[&#65533;&#65533;\t&#65533;&#65533;`&#65533;(&#1891;&#65533;)&#65533;\u0001&#65533;&#65533;\u0007&#65533;&#65533;&#65533;&#65533;&#65533;&#65533;-v6H&#127;&#65533;&#65533;&#65533;&#367;&#65533;S&#65533;^&amp;lt;&#65533;W&#65533;&#65533;d\u0013L&#65533;i&#65533;&#65533;C&#65533;w&#65533;&#348;C&#65533;d+-&#65533;&#65533;&#65533;&#65533;&#65533;&#65533;&#65533;6D&#65533;?&#1839;\u0016w_&#65533;&#65533;hA&#65533;&#65533;\u000F&#65533;&#65533;A&#65533;_&#65533;!Fu&#65533;\u0012FYF&#65533;&#65533;*N&#65533;l6&#65533;e&#65533;UQ&#65533;3&#65533;\u001C&#65533;\u001AT&#65533;&#65533;u&#65533;&amp;amp;&#65533;BY5&#65533;&#1164;\u0016I&#65533;&#1260;p7&#65533;WyL&#65533;&#65533;5&#65533;i&#65533;&#65533;&#65533;a&#1544;o&#65533;\u0006&#65533;&#65533;&#65533;N&#65533;p&#65533;&#65533;&#65533;n&#65533;&#65533;\u0016&#65533;\u0012\u001Bm&#65533;&#65533;\u000B&#65533;g&#65533;w\u0000\u0000\u0000&#65533;&#65533;\u0003\u0000OW$&amp;lt;\u001B\u0003\u0000\u0000&quot;&lt;/span&gt;
  }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;To fix this, we should add compression support to the Vert.x &lt;tt&gt;HttpServer&lt;/tt&gt; object via &lt;tt&gt;HttpServerOptions&lt;/tt&gt; with &lt;tt&gt;setCompressionSupported(true)&lt;/tt&gt; set.&lt;/p&gt;

&lt;p&gt;See: &lt;a href=&quot;https://vertx.io/docs/apidocs/io/vertx/core/http/HttpServerOptions.html#setCompressionSupported-boolean-&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;HttpServerOptions.setCompressionSupported(boolean)&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="79058">MODAES-4</key>
            <summary>HTTP compression is not supported</summary>
                <type id="10001" iconUrl="https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium">Bug</type>
                                            <priority id="10005" iconUrl="https://dev.folio.org/assets/jira-priority/tbd.svg">TBD</priority>
                        <status id="6" iconUrl="https://folio-org.atlassian.net/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10003">Done</resolution>
                                                        <assignee accountid="70121:e70f578f-dc5a-4a30-8836-fc2418025d21">Matt Reno</assignee>
                                                                <reporter accountid="70121:e70f578f-dc5a-4a30-8836-fc2418025d21">Matt Reno</reporter>
                                    <labels>
                    </labels>
                <created>Wed, 22 Apr 2020 14:41:26 +0000</created>
                <updated>Thu, 30 Jul 2020 21:13:39 +0000</updated>
                            <resolved>Thu, 30 Jul 2020 21:13:39 +0000</resolved>
                                                    <fixVersion>0.0.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                        <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i00zpj:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10025" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>[CHART] Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>