diff --git a/dataproc/quickstart.js b/dataproc/quickstart.js index 5e6c614d74..01c7e314b0 100644 --- a/dataproc/quickstart.js +++ b/dataproc/quickstart.js @@ -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(); diff --git a/dataproc/submitJob.js b/dataproc/submitJob.js index 82670f43a4..1fd265ea98 100644 --- a/dataproc/submitJob.js +++ b/dataproc/submitJob.js @@ -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();