[arvados] updated: 2.5.0-268-g00f3f8180
git repository hosting
git at public.arvados.org
Fri Mar 10 16:07:33 UTC 2023
Summary of changes:
lib/cloud/ec2/ec2.go | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
via 00f3f818027bdc69178bb54e49802baf20d9527d (commit)
via 7e7a2540f8a178db5efa8092b5d4086676ee7643 (commit)
via 4d80b93ac628a19c1ab590dfc19b7ad58bbce950 (commit)
from 56b27b265791e8f1b023a7864365d92876c97eb8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 00f3f818027bdc69178bb54e49802baf20d9527d
Merge: 56b27b265 7e7a2540f
Author: Tom Clegg <tom at curii.com>
Date: Fri Mar 10 11:07:17 2023 -0500
Merge branch '20188-insufficient-subnet'
fixes #20188
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
commit 7e7a2540f8a178db5efa8092b5d4086676ee7643
Author: Tom Clegg <tom at curii.com>
Date: Fri Mar 10 11:06:25 2023 -0500
20188: Handle InsufficientVolumeCapacity as quota error.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/lib/cloud/ec2/ec2.go b/lib/cloud/ec2/ec2.go
index aa190a055..a74f12561 100644
--- a/lib/cloud/ec2/ec2.go
+++ b/lib/cloud/ec2/ec2.go
@@ -541,10 +541,11 @@ func (err rateLimitError) EarliestRetry() time.Time {
}
var isCodeCapacity = map[string]bool{
+ "InsufficientFreeAddressesInSubnet": true,
"InsufficientInstanceCapacity": true,
- "VcpuLimitExceeded": true,
+ "InsufficientVolumeCapacity": true,
"MaxSpotInstanceCountExceeded": true,
- "InsufficientFreeAddressesInSubnet": true,
+ "VcpuLimitExceeded": true,
}
// isErrorCapacity returns whether the error is to be throttled based on its code.
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list