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

Commit 93b8081

Browse files
author
Dominik Frantisek Bucik
committed
fix: 🐛 Fix missing execute statement in statistics filter
1 parent fbf9c47 commit 93b8081

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

+1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ private void updateLogin(Connection c, Long idpId, Long spId, String userId) {
327327
ps.setLong(2, idpId);
328328
ps.setLong(3, spId);
329329
ps.setString(4, userId);
330+
ps.execute();
330331
log.debug("{} - Updated login count by 1 for combination: idpId={}, spId={}, userId={}",
331332
filterName, idpId, spId, userId);
332333
} catch (SQLException ex) {

0 commit comments

Comments
 (0)