[
https://issues.apache.org/jira/browse/KNOX-2773?focusedWorklogId=788553&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-788553
]
ASF GitHub Bot logged work on KNOX-2773:
----------------------------------------
Author: ASF GitHub Bot
Created on: 07/Jul/22 09:34
Start Date: 07/Jul/22 09:34
Worklog Time Spent: 10m
Work Description: MrtnBalazs commented on PR #604:
URL: https://github.com/apache/knox/pull/604#issuecomment-1177315020
I managed to trace it back to GatewayDispatchFilter.java `init()` method,
which overrides AbstractGatewayFilter-s `init()` method which comes from the
javax.servlet.Filter interface.
The documentation of this interfaces `init()` method says:
> Called by the web container to indicate to a filter that it is being
placed into service.
The servlet container calls the init method exactly once after instantiating
the filter. The init method must complete successfully before the filter is
asked to do any filtering work.>
Issue Time Tracking
-------------------
Worklog Id: (was: 788553)
Time Spent: 1.5h (was: 1h 20m)
> Log replay buffer size with info level
> --------------------------------------
>
> Key: KNOX-2773
> URL: https://issues.apache.org/jira/browse/KNOX-2773
> Project: Apache Knox
> Issue Type: Improvement
> Reporter: Balazs Marton
> Priority: Minor
> Time Spent: 1.5h
> Remaining Estimate: 0h
>
> Replay buffer size can be defined in two places, in the topology file and in
> the service.xml.
> The topology file takes priority over the service.xml. To prevent confusion
> it would be nice to see it's value in the log.
> {code:java}
> <service>
> <role>HIVE</role>
> <url>http://localhost:10001/cliservice</url>
> <param>
> <name>replayBufferSize</name>
> <value>8</value>
> </param>
> </service>
> {code}
> {code:java}
> <dispatch classname="org.apache.knox.gateway.dispatch.ConfigurableDispatch"
>
> ha-classname="org.apache.knox.gateway.ha.dispatch.ConfigurableHADispatch">
> <param>
> <name>responseExcludeHeaders</name>
> <value>WWW-AUTHENTICATE</value>
> </param>
> <param>
> <name>replayBufferSize</name>
> <value>65</value>
> </param>
> </dispatch>
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)