fix: 🐛 Fix missing execute statement in statistics filter

pull/1580/head
Dominik Frantisek Bucik 2022-02-17 08:50:27 +01:00
parent fbf9c470ba
commit 93b8081c33
No known key found for this signature in database
GPG Key ID: 25014C8DB2E7E62D
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) {