Merge pull request #147 from dBucik/fix_stats

fix: 🐛 Fix missing execute statement in statistics filter
pull/1580/head
Dominik František Bučík 2022-02-17 08:52:32 +01:00 committed by GitHub
commit 70b42c466a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -327,6 +327,7 @@ public class ProxyStatisticsFilter extends AuthProcFilter {
ps.setLong(2, idpId);
ps.setLong(3, spId);
ps.setString(4, userId);
ps.execute();
log.debug("{} - Updated login count by 1 for combination: idpId={}, spId={}, userId={}",
filterName, idpId, spId, userId);
} catch (SQLException ex) {