Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelVidaurre committed May 27, 2015
2 parents 95955fb + 62129ab commit 69a3ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion job.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ Job.prototype.__taskIsInPlan = function (taskId) {
*/
Job.prototype._getShared = function (taskId, key) {
if (this.__taskStorages[taskId] && this.__taskStorages[taskId][key] !== undefined) {
return this.__taskStorages[taskId][key];
return _.cloneDeep(this.__taskStorages[taskId][key]);
}

return undefined;
Expand Down

0 comments on commit 69a3ade

Please sign in to comment.