Skip to content

Commit

Permalink
Merge pull request #1176 from ashitsalesforce/master
Browse files Browse the repository at this point in the history
Fix intermittent NPE
  • Loading branch information
ashitsalesforce authored Jun 10, 2024
2 parents 7f87bd6 + 7417c72 commit b53f0c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ public BulkV2Client getBulkV2Client() {
public CompositeRESTClient getRESTClient() {
if (this.restClient == null) {
this.restClient = new CompositeRESTClient(this);
connectIfSessionExists(this.bulkV2Client);
connectIfSessionExists(this.restClient);
}
return this.restClient;
}/**
Expand Down

0 comments on commit b53f0c1

Please sign in to comment.