Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 10d1660

Browse files
committed
move cluster output to new line
1 parent 8c72960 commit 10d1660

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/jobs/create.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ function create(params, cb) {
225225
if (err) return cb(err);
226226
if (!res.id) return new Error('Job create failed; job id not found.');
227227
var jobId = res.id;
228-
console.log('New jobId: ' + res.id + ' cluster: ' + res.cluster);
228+
console.log('New jobId: ' + res.id);
229+
console.log('Cluster: ' + res.cluster);
229230
console.log('Job ' + res.state);
230231
if (res.state === 'Pending') console.log('Waiting for job to run...');
231232
return jobs_waitfor({ jobId: jobId, state: 'Running' }, function _waitforCb(err, res) {

0 commit comments

Comments
 (0)