Fixed weird message in Batch SQL API

This commit is contained in:
Daniel García Aubert 2016-03-02 10:31:14 +01:00
parent 028e0d1553
commit fbaebfe8f2

View File

@ -59,7 +59,7 @@ JobBackend.prototype.update = function (job_id, sql, callback) {
}
if (job.status !== 'pending') {
return callback(new Error('Job is not pending, it couldn\'t be updated'));
return callback(new Error('Job is not pending, it cannot be updated'));
}
var now = new Date().toISOString();