Skip to content

Commit 881b065

Browse files
committed
[H] Hotfix: Deploy job jails in prod due to mirror limit being a float (#7598)
1 parent af6a431 commit 881b065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployments/prod/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1870,7 +1870,7 @@ def env() -> Mapping[str, str | None]:
18701870
repository=dict(name='tdr_hca')),
18711871
sources=condense(sources))
18721872
for atlas, catalog, sources, mirror_limit, it_mirror_limit in [
1873-
('hca', 'dcp55', dcp55_sources, None, 1.5 * 1024 ** 3),
1873+
('hca', 'dcp55', dcp55_sources, None, int(1.5 * 1024 ** 3)),
18741874
('lungmap', 'lm9', lm9_sources, -1, -1)
18751875
]
18761876
for suffix, is_it in [

0 commit comments

Comments
 (0)