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

Commit 31bffe2

Browse files
committed
show cluster job is queued on
1 parent 29b6fe8 commit 31bffe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jobs/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ 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);
228+
console.log('New jobId: ' + res.id + ' cluster: ' + res.cluster);
229229
console.log('Job ' + res.state);
230230
if (res.state === 'Pending') console.log('Waiting for job to run...');
231231
return jobs_waitfor({ jobId: jobId, state: 'Running' }, function _waitforCb(err, res) {

0 commit comments

Comments
 (0)