Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/0642160d860bf940054bc95242f95d49f62e06be You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed metrics printing too much

pull/42/head
tycrek 4 years ago
parent 7d85db723f
commit 0642160d86
No known key found for this signature in database
GPG Key ID: 25D74F3943625263

@ -18,8 +18,7 @@ module.exports = () => {
data.get()
.then((D) => (d = D.map(([, resource]) => resource)))
.then(() => {
console.log(d);
.then(() =>
d.forEach(({ token, size }) => {
try {
totalSize += size;
@ -32,11 +31,8 @@ module.exports = () => {
} catch (ex) {
// Silently handle missing tokens from dev environment -tycrek
}
});
// Get AWS size
return bucketSize();
})
}))
.then(() => bucketSize())
.then((s3size) => {
log.info('---- Usage metrics ----')
.blank()

Loading…
Cancel
Save