This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new bbcbc5ef62 Make it clear that session-attribute name and class filters apply to all types of serialization, not just clustering. bbcbc5ef62 is described below commit bbcbc5ef621124890c7fb2f5ce98d001cbd375b6 Author: Christopher Schultz <ch...@christopherschultz.net> AuthorDate: Thu Mar 30 15:54:20 2023 -0400 Make it clear that session-attribute name and class filters apply to all types of serialization, not just clustering. --- webapps/docs/config/manager.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webapps/docs/config/manager.xml b/webapps/docs/config/manager.xml index 93489f8f9c..ed7ae2b83e 100644 --- a/webapps/docs/config/manager.xml +++ b/webapps/docs/config/manager.xml @@ -196,7 +196,8 @@ <attribute name="sessionAttributeNameFilter" required="false"> <p>A regular expression used to filter which session attributes will be - distributed. An attribute will only be distributed if its name matches + serialized for clustering/replication, or storage to any persistent store. + An attribute will only be serialized if its name matches this pattern. If the pattern is zero length or <code>null</code>, all attributes are eligible for distribution. The pattern is anchored so the session attribute name must fully match the pattern. As an example, the @@ -208,7 +209,8 @@ <attribute name="sessionAttributeValueClassNameFilter" required="false"> <p>A regular expression used to filter which session attributes will be - distributed. An attribute will only be distributed if the implementation + serialized for clustering/replication, or storage to any persistent store. + An attribute will only be serialized if the implementation class name of the value matches this pattern. If the pattern is zero length or <code>null</code>, all attributes are eligible for distribution. The pattern is anchored so the fully qualified class name @@ -334,7 +336,8 @@ <attribute name="sessionAttributeNameFilter" required="false"> <p>A regular expression used to filter which session attributes will be - distributed. An attribute will only be distributed if its name matches + serialized for clustering/replication, or storage to any persistent store. + An attribute will only be serialized if its name matches this pattern. If the pattern is zero length or <code>null</code>, all attributes are eligible for distribution. The pattern is anchored so the session attribute name must fully match the pattern. As an example, the @@ -346,7 +349,8 @@ <attribute name="sessionAttributeValueClassNameFilter" required="false"> <p>A regular expression used to filter which session attributes will be - distributed. An attribute will only be distributed if the implementation + serialized for clustering/replication, or storage to any persistent store. + An attribute will only be serialized if the implementation class name of the value matches this pattern. If the pattern is zero length or <code>null</code>, all attributes are eligible for distribution. The pattern is anchored so the fully qualified class name --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org