File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/io/supertokens/storage/postgresql Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2525import io .supertokens .pluginInterface .authRecipe .AuthRecipeUserInfo ;
2626import io .supertokens .pluginInterface .authRecipe .LoginMethod ;
2727import io .supertokens .pluginInterface .authRecipe .sqlStorage .AuthRecipeSQLStorage ;
28+ import io .supertokens .pluginInterface .bulkimport .BulkImportStorage ;
2829import io .supertokens .pluginInterface .bulkimport .BulkImportStorage .BULK_IMPORT_USER_STATUS ;
2930import io .supertokens .pluginInterface .bulkimport .exceptions .BulkImportTransactionRolledBackException ;
3031import io .supertokens .pluginInterface .bulkimport .sqlStorage .BulkImportSQLStorage ;
@@ -898,6 +899,8 @@ public void addInfoToNonAuthRecipesBasedOnUserId(TenantIdentifier tenantIdentifi
898899 }
899900 } else if (className .equals (JWTRecipeStorage .class .getName ())) {
900901 /* Since JWT recipe tables do not store userId we do not add any data to them */
902+ } else if (className .equals (BulkImportStorage .class .getName ())){
903+ //ignore
901904 } else if (className .equals (ActiveUsersStorage .class .getName ())) {
902905 try {
903906 ActiveUsersQueries .updateUserLastActive (this , tenantIdentifier .toAppIdentifier (), userId );
You can’t perform that action at this time.
0 commit comments