Making sure any errors that occur in usage quota are thrown up to stop endpoint from functioning.

This commit is contained in:
mike12345567 2020-10-09 17:28:49 +01:00
parent ac9be28064
commit 86102982a1
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ exports.update = async (apiKey, property, usage) => {
await apiKeyTable.put({ item: keyObj })
return
}
throw "Resource limits have been reached"
}
throw "Resource limits have been reached"
}
}