[ARVADOS] updated: 1.1.3-141-g0bf5d16
Git user
git at public.curoverse.com
Wed Mar 7 14:36:32 EST 2018
Summary of changes:
sdk/python/arvados/commands/migrate19.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 0bf5d16dcb31ec6f23294132ddb558a40026ef82 (commit)
from cb191006b7daf0a36f46349ebb9994cd30261a07 (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 0bf5d16dcb31ec6f23294132ddb558a40026ef82
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