Skip to content

Commit

Permalink
Ensure the HTTPClientModule is created with a non-null logId that…
Browse files Browse the repository at this point in the history
… might result in an injection dependency exception otherwise.

PiperOrigin-RevId: 660336387
Change-Id: Ie2fc30fb71d1a36974e86a63f2f8cfe442cbcb4c
  • Loading branch information
tooryx authored and copybara-github committed Aug 7, 2024
1 parent 9689022 commit 5617c99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ protected void configure() {

install(new SystemUtcClockModule());
install(new CommandExecutorModule());
install(new HttpClientModule.Builder().setLogId(mco.logId).build());
install(new HttpClientModule.Builder().setLogId(mco.getLogId()).build());
install(new GoogleCloudStorageArchiverModule());
install(new ScanResultsArchiverModule());
install(new PluginExecutionModule());
Expand Down

0 comments on commit 5617c99

Please sign in to comment.