Skip to content

Commit

Permalink
Added description tag was not getting set right in allAdd. Set it to …
Browse files Browse the repository at this point in the history
…a default value.
  • Loading branch information
[email protected] authored and [email protected] committed Jul 17, 2023
1 parent b574f74 commit 5ce6dc1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ public void add(Collection<? extends IdentityProvider> idps) throws CILogonExcep
PreparedStatement stmt = c.prepareStatement(getIdpTable().createInsertStatement());
for (IdentityProvider idp : idps) {
try {
stmt.setString(1, idp.getIdentifierString());
for (int i = 1; i <= getIdpTable().getColumnDescriptor().size(); i++) {
stmt.setString(i, idp.getIdentifierString()); // Set everything to the IDP id by default.
}
stmt.execute();
} catch (SQLException e) {

Expand Down
4 changes: 2 additions & 2 deletions qdl/buildNumber.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file
#Mon Jul 17 07:58:06 CDT 2023
buildNumber\\d*=1213
#Mon Jul 17 15:05:52 CDT 2023
buildNumber\\d*=1223
4 changes: 2 additions & 2 deletions server/buildNumber.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#maven.buildNumber.plugin properties file
#Mon Jul 17 07:57:42 CDT 2023
buildNumber\\d*=2716
#Mon Jul 17 15:05:52 CDT 2023
buildNumber\\d*=2723
=\=\=\=\=\=\=
>>>>>>>=Stashed changes
<<<<<<<=Updated upstream
4 changes: 2 additions & 2 deletions test/buildNumber.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#maven.buildNumber.plugin properties file
#Mon Jul 17 07:57:46 CDT 2023
buildNumber\\d*=2609
#Mon Jul 17 15:05:52 CDT 2023
buildNumber\\d*=2616
=\=\=\=\=\=\=
>>>>>>>=Stashed changes
<<<<<<<=Updated upstream

0 comments on commit 5ce6dc1

Please sign in to comment.