Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit d04b83b

Browse files
author
Dominik Frantisek Bucik
committed
fix: 🐛 Fixed missing statement in statistics
1 parent 73288b5 commit d04b83b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

perun-oidc-server/src/main/java/cz/muni/ics/oidc/server/filters/impl/ProxyStatisticsFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ private void updateLogin(Connection c, Long idpId, Long spId, String userId) {
324324
ps.setLong(2, idpId);
325325
ps.setLong(3, spId);
326326
ps.setString(4, userId);
327+
ps.execute();
327328
log.debug("{} - Updated login count by 1 for combination: idpId={}, spId={}, userId={}",
328329
filterName, idpId, spId, userId);
329330
} catch (SQLException ex) {

0 commit comments

Comments
 (0)