Browse Source

Making sure quota is always set correctly.

pull/4023/head
mike12345567 6 years ago
parent
commit
cfb274f34b
  1. 6
      packages/server/src/api/controllers/deploy/index.js

6
packages/server/src/api/controllers/deploy/index.js

@ -46,7 +46,11 @@ async function checkAllDeployments(deployments, user) {
)
} catch (err) {
// system may have restarted, need to re-verify
if (err != null && err.code === "InvalidClientTokenId") {
if (
err != null &&
err.code === "InvalidClientTokenId" &&
deployment.quota
) {
await verifyDeployment({
...user,
quota: deployment.quota,

Loading…
Cancel
Save