Skip to content

Commit

Permalink
fix: PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anku255 committed Apr 29, 2024
1 parent 3bac293 commit 03e6e9d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ public void closeConnectionForBulkImportProxyStorage() throws StorageQueryExcept
@Override
public void commitTransactionForBulkImportProxyStorage() throws StorageQueryException {
try {
this.connection.commitForBulkImportProxyStorage();
if (this.connection != null) {
this.connection.commitForBulkImportProxyStorage();
}
} catch (SQLException e) {
throw new StorageQueryException(e);
}
Expand Down

0 comments on commit 03e6e9d

Please sign in to comment.