forked from engineering/cloudservices
fix await issue in whois
parent
e40d8fe47f
commit
0c55303505
|
@ -34,7 +34,7 @@ export default class Whois extends Command {
|
|||
const cpuUsage = await this.client.util.exec(`top -b -n 1 -u ${account.username} | awk 'NR>7 { sum += $9; } END { print sum; }'`);
|
||||
embed.addField('CPU Usage', `${cpuUsage.split('\n')[0]}%`, true);
|
||||
embed.addField('Memory', dataConversion(Number(await this.client.util.exec(`memory ${account.username}`))), true);
|
||||
const data = await this.client.redis.get(`storage-${account.username}`) ? dataConversion(Number(this.client.redis.get(`storage-${account.username}`))) : 'N/A';
|
||||
const data = await this.client.redis.get(`storage-${account.username}`) ? dataConversion(Number(await this.client.redis.get(`storage-${account.username}`))) : 'N/A';
|
||||
embed.addField('Storage', data, true);
|
||||
let details = '';
|
||||
if (account.locked) details += 'This account is currently locked.\n';
|
||||
|
|
Loading…
Reference in New Issue