diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-12-25 21:03:24 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-12-25 21:03:24 +0100 |
commit | 7b83b319fce24faf12a3d69db9ccce87d0dde4f6 (patch) | |
tree | a1772907af9e12feff748bc68062d0e89e1cea97 /eaaf_core/src | |
parent | a378db97e9f14bfa81bd490186c065d77f5806c7 (diff) | |
parent | a3b7c488300b9b231959663bbd2dd96a4a452ec0 (diff) | |
download | EAAF-Components-7b83b319fce24faf12a3d69db9ccce87d0dde4f6.tar.gz EAAF-Components-7b83b319fce24faf12a3d69db9ccce87d0dde4f6.tar.bz2 EAAF-Components-7b83b319fce24faf12a3d69db9ccce87d0dde4f6.zip |
Merge branch 'feature/add_springboot_commons' into 'nightlyBuild'
Feature/add springboot commons
See merge request egiz/eaaf_components!8
Diffstat (limited to 'eaaf_core/src')
-rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/RequestStorage.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/RequestStorage.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/RequestStorage.java index 86c50be0..db13bf71 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/RequestStorage.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/RequestStorage.java @@ -74,6 +74,10 @@ public class RequestStorage implements IRequestStorage { log.debug("Searching for expired pendingRequest with Id: {} ... ", e.getInvalidInternalPendingReqId()); invalidPendingRequest = transactionStorage.get(e.getInvalidInternalPendingReqId(), IRequest.class); + + // If pendingReq. was found, set transactionID and sessionID to Logger + TransactionIdUtils.setAllLoggingVariables(invalidPendingRequest); + log.debug("{} expired pendingReq. Set it into Exception ...", invalidPendingRequest != null ? "Find" : "Find NO "); |