Skip to content

Commit e2bf38a

Browse files
gcf-owl-bot[bot]NimJay
authored andcommitted
chore: new owl bot post processor docker image (#488)
gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:f93bb861d6f12574437bb9aee426b71eafd63b419669ff0ed029f4b7e7162e3f
1 parent eefc50a commit e2bf38a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

dataproc/quickstart.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,8 @@ function main(projectId, region, clusterName, jobFilePath) {
8383
const [jobOperation] = await jobClient.submitJobAsOperation(job);
8484
const [jobResponse] = await jobOperation.promise();
8585

86-
const matches = jobResponse.driverOutputResourceUri.match(
87-
'gs://(.*?)/(.*)'
88-
);
86+
const matches =
87+
jobResponse.driverOutputResourceUri.match('gs://(.*?)/(.*)');
8988

9089
const storage = new Storage();
9190

dataproc/submitJob.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ function main(
6161
const [jobOperation] = await jobClient.submitJobAsOperation(job);
6262
const [jobResponse] = await jobOperation.promise();
6363

64-
const matches = jobResponse.driverOutputResourceUri.match(
65-
'gs://(.*?)/(.*)'
66-
);
64+
const matches =
65+
jobResponse.driverOutputResourceUri.match('gs://(.*?)/(.*)');
6766

6867
const storage = new Storage();
6968

0 commit comments

Comments
 (0)