Affected Versions: 3.x and 4.x
The file timestamp health probe will return the Created timestamp even when the Modified value is selected.
Workaround:
Update the value directly using web inspector to be "modified" instead of "Modified" by running the following in a javascript console and pressing the save button:
_.each(settings.get('Providers').get('Data').models, function (p) { if (p.get('_type').match('Health')){ _.each(p.get('Data').models, function (c) { _.each(c.get('Probes').models, function (pr) { if(pr.get('_type').match('FileTimeStampProbe') && pr.get('TimeStamp') === 'Modified'){ console.log('Setting timetamp for ', pr.get('Name')); pr.set('TimeStamp', 'modified'); } }); }); } });
Fixed in Version: 4.2.2.1451
Comments
0 comments
Please sign in to leave a comment.