[ARVADOS] updated: 6152230e1f77b925c2041d688805ab6764919805
git at public.curoverse.com
git at public.curoverse.com
Tue Jul 28 15:56:04 EDT 2015
Summary of changes:
services/fuse/arvados_fuse/__init__.py | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
via 6152230e1f77b925c2041d688805ab6764919805 (commit)
from ff24bb94fdfc9dad61821aef56898e2c196c0aea (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 6152230e1f77b925c2041d688805ab6764919805
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Tue Jul 28 15:56:57 2015 -0400
Hotfix, inode cache find() returns list instead of single item now. refs #6643
diff --git a/services/fuse/arvados_fuse/__init__.py b/services/fuse/arvados_fuse/__init__.py
index 70577ed..4915131 100644
--- a/services/fuse/arvados_fuse/__init__.py
+++ b/services/fuse/arvados_fuse/__init__.py
@@ -350,20 +350,21 @@ class Operations(llfuse.Operations):
def on_event(self, ev):
if 'event_type' in ev:
with llfuse.lock:
- item = self.inodes.inode_cache.find(ev["object_uuid"])
- if item is not None:
- item.invalidate()
- if ev["object_kind"] == "arvados#collection":
- new_attr = ev.get("properties") and ev["properties"].get("new_attributes") and ev["properties"]["new_attributes"]
-
- # new_attributes.modified_at currently lacks subsecond precision (see #6347) so use event_at which
- # should always be the same.
- #record_version = (new_attr["modified_at"], new_attr["portable_data_hash"]) if new_attr else None
- record_version = (ev["event_at"], new_attr["portable_data_hash"]) if new_attr else None
-
- item.update(to_record_version=record_version)
- else:
- item.update()
+ items = self.inodes.inode_cache.find(ev["object_uuid"])
+ if items is not None:
+ for item in items:
+ item.invalidate()
+ if ev["object_kind"] == "arvados#collection":
+ new_attr = ev.get("properties") and ev["properties"].get("new_attributes") and ev["properties"]["new_attributes"]
+
+ # new_attributes.modified_at currently lacks subsecond precision (see #6347) so use event_at which
+ # should always be the same.
+ #record_version = (new_attr["modified_at"], new_attr["portable_data_hash"]) if new_attr else None
+ record_version = (ev["event_at"], new_attr["portable_data_hash"]) if new_attr else None
+
+ item.update(to_record_version=record_version)
+ else:
+ item.update()
oldowner = ev.get("properties") and ev["properties"].get("old_attributes") and ev["properties"]["old_attributes"].get("owner_uuid")
olditemparent = self.inodes.inode_cache.find(oldowner)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list