Always return valid dates for timestamps

This commit is contained in:
Michael Lange
2018-09-19 16:33:18 -07:00
parent 28d8f797e6
commit f4ae9e19a3

View File

@@ -6,13 +6,15 @@ export default Factory.extend({
_taskNames: () => [], // Set by allocation
timestamp: () => Date.now() * 1000000,
tasks() {
var hash = {};
this._taskNames.forEach(task => {
hash[task] = {
Pids: null,
ResourceUsage: generateResources(),
Timestamp: Date.now(),
Timestamp: Date.now() * 1000000,
};
});
return hash;