Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: removing restriction of connection pool size for bulk import #227

Closed
wants to merge 54 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
a626f3c
feat: Changes for multitenancy dashboard (#209)
prateek3255 May 24, 2024
bac79ce
adding dev-v7.1.0 tag to this commit to ensure building
sattvikc May 24, 2024
1c6b8b7
reformats code
rishabhpoddar Jul 8, 2024
729ba6a
reformates code
rishabhpoddar Jul 8, 2024
16101d0
Merge branch '7.0' into 7.1
rishabhpoddar Jul 8, 2024
dc0d4ad
feat: multitenancy dashboard (#220)
sattvikc Jul 9, 2024
8d4c431
adding dev-v7.1.0 tag to this commit to ensure building
sattvikc Jul 10, 2024
50573f7
fix: gradle.properties in tests (#221)
sattvikc Jul 10, 2024
8c9e074
adding dev-v7.1.0 tag to this commit to ensure building
sattvikc Jul 10, 2024
774b366
adding dev-v7.1.0 tag to this commit to ensure building
sattvikc Jul 15, 2024
9343427
fix: tests (#222)
sattvikc Aug 8, 2024
60b6e0f
adding dev-v7.1.1 tag to this commit to ensure building
sattvikc Aug 8, 2024
0d115f2
fix: slow query fix (#223)
sattvikc Sep 2, 2024
b933a54
adding dev-v7.1.2 tag to this commit to ensure building
sattvikc Sep 2, 2024
c9436ff
fix: index for MAU (#224)
sattvikc Sep 4, 2024
28bcc7d
adding dev-v7.1.3 tag to this commit to ensure building
sattvikc Sep 4, 2024
1a30acd
fix: Test fix (#225)
sattvikc Sep 4, 2024
e40602c
adding dev-v7.1.3 tag to this commit to ensure building
sattvikc Sep 4, 2024
4404916
fix: removing restriction of connection pool size for bulk import
tamassoltesz Sep 20, 2024
9c093fb
fix: actually closing the connection
tamassoltesz Sep 27, 2024
e115ebe
fix: add bulk import retry logic for postgres too
tamassoltesz Sep 30, 2024
bc03e1a
chore: merge master to feature branch
tamassoltesz Oct 1, 2024
a6ed05f
fix: fix failing tests
tamassoltesz Oct 2, 2024
f474b2c
feat: OAuth provider support (#228)
sattvikc Oct 4, 2024
e2b7082
adding dev-v7.2.0 tag to this commit to ensure building
sattvikc Oct 4, 2024
c6d099c
fix: changelog (#230)
sattvikc Oct 4, 2024
cff42cb
adding dev-v7.2.0 tag to this commit to ensure building
sattvikc Oct 4, 2024
41107c5
feat: oauth2 tables and queries
tamassoltesz Oct 26, 2024
70328ff
Merge remote-tracking branch 'origin/7.2' into feat/oauth/allow-list
tamassoltesz Oct 26, 2024
a9d72a7
fix: fixing auto-merge issues
tamassoltesz Oct 26, 2024
ffa0196
Update src/main/java/io/supertokens/storage/postgresql/config/Postgre…
porcellus Oct 27, 2024
72838e3
Merge pull request #231 from supertokens/feat/oauth/allow-list
porcellus Oct 27, 2024
beb503d
fix: merge error
porcellus Oct 27, 2024
60d4363
adding dev-v7.2.0 tag to this commit to ensure building
porcellus Oct 27, 2024
e21f4bb
adding dev-v7.2.0 tag to this commit to ensure building
porcellus Oct 27, 2024
c98c447
fix: changinf jti + comma handling
tamassoltesz Oct 28, 2024
0362003
fix: flaky test
sattvikc Oct 28, 2024
847f24d
Merge pull request #233 from supertokens/flaky-test
porcellus Oct 28, 2024
939ab34
Merge branch '7.2' into fix/oauth/jti-listing
porcellus Oct 28, 2024
664e82a
Merge pull request #232 from supertokens/fix/oauth/jti-listing
porcellus Oct 28, 2024
29c7124
adding dev-v7.2.0 tag to this commit to ensure building
porcellus Oct 28, 2024
1975735
ci: add missing image to ci config
porcellus Oct 28, 2024
dc86ab9
fix: remove System.out
porcellus Oct 28, 2024
ed9e982
Merge pull request #234 from supertokens/ci/fix_ci_issues
porcellus Oct 28, 2024
609c094
adding dev-v7.2.0 tag to this commit to ensure building
porcellus Oct 28, 2024
463bbd5
chore: changelog consistency
porcellus Oct 29, 2024
71a33d8
adding dev-v7.2.0 tag to this commit to ensure building
sattvikc Oct 30, 2024
b83a780
chore: current state save
tamassoltesz Nov 5, 2024
dfcdf49
chore: merging master to feature branch
tamassoltesz Nov 5, 2024
a5c740b
fix: fixing merge error with changelog
tamassoltesz Nov 5, 2024
57f7d04
feat: bulk inserting the bulk migration data
tamassoltesz Nov 15, 2024
11bd067
fix: fixes and error handling changes
tamassoltesz Nov 22, 2024
ec02abb
fix: fixing tests
tamassoltesz Nov 26, 2024
05edffc
chore: changelog and build version update
tamassoltesz Nov 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: actually closing the connection
tamassoltesz committed Sep 27, 2024
commit 9c093fb1836d2ee1595b0811fa9706a16435635f
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ public void initStorage(boolean shouldWait, List<TenantIdentifier> tenantIdentif
public void closeConnectionForBulkImportProxyStorage() throws StorageQueryException {
try {
if (this.connection != null) {
this.connection.close();
this.connection.closeForBulkImportProxyStorage();
this.connection = null;
}
ConnectionPool.close(this);