Skip to content

Commit

Permalink
chore: new owl bot post processor docker image (#488)
Browse files Browse the repository at this point in the history
gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:f93bb861d6f12574437bb9aee426b71eafd63b419669ff0ed029f4b7e7162e3f
  • Loading branch information
gcf-owl-bot[bot] authored May 10, 2021
1 parent 1b0cd08 commit 7ce14ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions dataproc/quickstart.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ function main(projectId, region, clusterName, jobFilePath) {
const [jobOperation] = await jobClient.submitJobAsOperation(job);
const [jobResponse] = await jobOperation.promise();

const matches = jobResponse.driverOutputResourceUri.match(
'gs://(.*?)/(.*)'
);
const matches =
jobResponse.driverOutputResourceUri.match('gs://(.*?)/(.*)');

const storage = new Storage();

Expand Down
5 changes: 2 additions & 3 deletions dataproc/submitJob.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ function main(
const [jobOperation] = await jobClient.submitJobAsOperation(job);
const [jobResponse] = await jobOperation.promise();

const matches = jobResponse.driverOutputResourceUri.match(
'gs://(.*?)/(.*)'
);
const matches =
jobResponse.driverOutputResourceUri.match('gs://(.*?)/(.*)');

const storage = new Storage();

Expand Down

0 comments on commit 7ce14ad

Please sign in to comment.