Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void submit() {
// TODO(hailongwen@): instrument 'google-api-java-client' to further break down the span.
// Here we only add a annotation to at least know how much time each batch takes.
span.addAnnotation("Execute batch request");
batch.setBatchUrl(new GenericUrl("https://www.googleapis.com/batch/storage/v1"));
batch.setBatchUrl(new GenericUrl(String.format("%s/batch/storage/v1", options.getHost())));
batch.execute();
}
} catch (IOException ex) {
Expand Down