Skip to content

Commit a6ed05f

Browse files
committed
fix: fix failing tests
1 parent bc03e1a commit a6ed05f

File tree

1 file changed

+3
-0
lines changed
  • src/main/java/io/supertokens/storage/postgresql

1 file changed

+3
-0
lines changed

src/main/java/io/supertokens/storage/postgresql/Start.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import io.supertokens.pluginInterface.authRecipe.AuthRecipeUserInfo;
2626
import io.supertokens.pluginInterface.authRecipe.LoginMethod;
2727
import io.supertokens.pluginInterface.authRecipe.sqlStorage.AuthRecipeSQLStorage;
28+
import io.supertokens.pluginInterface.bulkimport.BulkImportStorage;
2829
import io.supertokens.pluginInterface.bulkimport.BulkImportStorage.BULK_IMPORT_USER_STATUS;
2930
import io.supertokens.pluginInterface.bulkimport.exceptions.BulkImportTransactionRolledBackException;
3031
import 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);

0 commit comments

Comments
 (0)