[cpp-sp] 01/01: Fix Default for ApplicationId
Rod Widdowson
rdw at steadingsoftware.com
Tue Jun 24 09:49:23 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw 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=2db990d15720e73b317319b0adf51260d3ed28a3
commit 2db990d15720e73b317319b0adf51260d3ed28a3
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Jun 23 16:59:55 2025 +0100
Fix Default for ApplicationId
---
shibsp/session/impl/AbstractSessionCache.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shibsp/session/impl/AbstractSessionCache.cpp b/shibsp/session/impl/AbstractSessionCache.cpp
index 61b26567..5ce68e7b 100644
--- a/shibsp/session/impl/AbstractSessionCache.cpp
+++ b/shibsp/session/impl/AbstractSessionCache.cpp
@@ -321,7 +321,7 @@ unique_lock<Session> AbstractSessionCache::find(SPRequest& request, bool checkTi
const auto& settings = request.getRequestSettings().first;
- const char* applicationId = settings->getString(RequestMapper::APPLICATION_ID_PROP_NAME, RequestMapper::APPLICATION_ID_PROP_NAME);
+ const char* applicationId = settings->getString(RequestMapper::APPLICATION_ID_PROP_NAME, RequestMapper::APPLICATION_ID_PROP_DEFAULT);
unsigned int lifetime = settings->getUnsignedInt(RequestMapper::LIFETIME_PROP_NAME, RequestMapper::LIFETIME_PROP_DEFAULT);
unsigned int timeout = 0;
if (checkTimeout) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list