[cpp-sp] 02/02: Fix a misspelled option and add defaults to agent config.

Scott Cantor cantor.2 at osu.edu
Wed Jul 23 14:03:10 UTC 2025


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository cpp-sp.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=265d7a4f33ef87de6df80557ff93b58e47515dd2

commit 265d7a4f33ef87de6df80557ff93b58e47515dd2
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Jul 23 10:02:53 2025 -0400

    Fix a misspelled option and add defaults to agent config.
---
 configs/agent.ini                              | 9 +++++++++
 shibsp/session/impl/FilesystemSessionCache.cpp | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/configs/agent.ini b/configs/agent.ini
index 81667989..23ab2071 100644
--- a/configs/agent.ini
+++ b/configs/agent.ini
@@ -20,6 +20,15 @@ secretFile = agent.pwd
 
 [session-cache]
 type = filesystem
+# Defaults for file-backed cache
+#cacheDirectory = sessions
+#fileCleanupTrackingFile = shibsp_cache_cleanup
+#fileCleanupInterval = 1800
+#fileTimeout = 28800
+# Defaults for memory buffering
+#cleanupInterval = 900
+#storageAccessInterval = 600
+#inprocTimeout = 900
 
 [request-mapper]
 path = request-map.xml
diff --git a/shibsp/session/impl/FilesystemSessionCache.cpp b/shibsp/session/impl/FilesystemSessionCache.cpp
index fc59bb5c..db1a1801 100644
--- a/shibsp/session/impl/FilesystemSessionCache.cpp
+++ b/shibsp/session/impl/FilesystemSessionCache.cpp
@@ -87,7 +87,7 @@ namespace {
     };
 
     static const char CACHE_DIRECTORY_PROP_NAME[] = "cacheDirectory";
-    static const char FILE_CLEANUP_TRACKING_FILE_PROP_NAME[] = "fileCleanupTrackingfile";
+    static const char FILE_CLEANUP_TRACKING_FILE_PROP_NAME[] = "fileCleanupTrackingFile";
     static const char FILE_CLEANUP_INTERVAL_PROP_NAME[] = "fileCleanupInterval";
     static const char FILE_TIMEOUT_PROP_NAME[] = "fileTimeout";
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list