[ARVADOS] updated: 1.1.3-148-g8d65322
Git user
git at public.curoverse.com
Wed Mar 7 14:37:06 EST 2018
Summary of changes:
sdk/python/arvados/commands/migrate19.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 8d65322676bee8adc01ec1f0fc3f1339b0441535 (commit)
from f56ca98bda57d61b6b9b26b5fa1e845f8d567e5b (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 8d65322676bee8adc01ec1f0fc3f1339b0441535
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date: Wed Mar 7 14:35:51 2018 -0500
Python sdk: do not try to do a bitwise operation on a float.
No issue #
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>
diff --git a/sdk/python/arvados/commands/migrate19.py b/sdk/python/arvados/commands/migrate19.py
index 716b456..3ce47b2 100644
--- a/sdk/python/arvados/commands/migrate19.py
+++ b/sdk/python/arvados/commands/migrate19.py
@@ -168,7 +168,7 @@ def main(arguments=None):
ln = df_out.splitlines()[1]
filesystem, blocks, used, available, use_pct, mounted = re.match(r"^([^ ]+) *([^ ]+) *([^ ]+) *([^ ]+) *([^ ]+) *([^ ]+)", ln).groups(1)
if int(available) <= will_need:
- logger.warn("Temp filesystem mounted at %s does not have enough space for biggest image (has %i MiB, needs %i MiB)", mounted, int(available)>>20, will_need>>20)
+ logger.warn("Temp filesystem mounted at %s does not have enough space for biggest image (has %i MiB, needs %i MiB)", mounted, int(available)>>20, int(will_need)>>20)
if not args.force:
exit(1)
else:
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list