Skip to content

Commit ed9e982

Browse files
authored
Merge pull request #234 from supertokens/ci/fix_ci_issues
ci: fix ci issues
2 parents 29c7124 + dc86ab9 commit ed9e982

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
test:
66
docker:
77
- image: rishabhpoddar/supertokens_postgresql_plugin_test
8+
- image: rishabhpoddar/oauth-server-cicd
89
resource_class: large
910
steps:
1011
- add_ssh_keys:

src/main/java/io/supertokens/storage/postgresql/queries/OAuthQueries.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ public static List<OAuthClient> getOAuthClients(Start start, AppIdentifier appId
204204
for (int i = 0; i < clientIds.size(); i++) {
205205
pst.setString(i + 2, clientIds.get(i));
206206
}
207-
System.out.println(pst);
208207
}, (result) -> {
209208
List<OAuthClient> res = new ArrayList<>();
210209
while (result.next()) {

0 commit comments

Comments
 (0)