SEARCH-539 & SEARCH-206

- Removed the multiplication (receiving bytes)
This commit is contained in:
Keerthi Niranjan
2017-12-18 15:18:31 +05:30
parent 5e2396d7e8
commit f67fb1db2e

View File

@@ -32,7 +32,7 @@ function checkDiskSpace(path, callback) {
let data = stdout.trim().split("\n");
let disk_info_str = data[data.length - 1].split(':');
return callback(null, disk_info_str[1] * 1024);
return callback(null, disk_info_str[1]);
});
}