This is an automated email from the ASF dual-hosted git repository.
schultz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 3ab4c0052e Make it clear that session-attribute name and class filters
apply to all types of serialization, not just clustering.
3ab4c0052e is described below
commit 3ab4c0052e13a8faa479ed8f738cec4737948340
Author: Christopher Schultz <[email protected]>
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 1b7e0b9169..27ea0fa29a 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
@@ -331,7 +333,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
@@ -343,7 +346,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: [email protected]
For additional commands, e-mail: [email protected]