Loading resources/management/commands/fusefs.py +7 −1 Original line number Diff line number Diff line Loading @@ -241,4 +241,10 @@ class Command(BaseCommand): root_collection = Collection.objects.filter(pk=root_collection_id).first() if not root_collection: raise CommandError(f"{root_collection_id} is not a valid collection id") FUSE(Ops(root_collection), mount_point, nothreads=True, foreground=True) FUSE( Ops(root_collection), mount_point, nothreads=True, foreground=True, allow_other=True, ) Loading
resources/management/commands/fusefs.py +7 −1 Original line number Diff line number Diff line Loading @@ -241,4 +241,10 @@ class Command(BaseCommand): root_collection = Collection.objects.filter(pk=root_collection_id).first() if not root_collection: raise CommandError(f"{root_collection_id} is not a valid collection id") FUSE(Ops(root_collection), mount_point, nothreads=True, foreground=True) FUSE( Ops(root_collection), mount_point, nothreads=True, foreground=True, allow_other=True, )