What's the permissions of the sub-branch created by create_isolate_path_op_env_with_access? #241
Unanswered
streetycat
asked this question in
Q&A
Replies: 1 comment
-
|
The answer might be in code as follow: let sub = obj_list
.last_mut()
.unwrap()
.obj_map
.get_or_create_child_object_map(&self.obj_map_cache, part, content_type, create_strategy, None)
.await
.map_err(|e| {
let msg = format!(
"get or create object by path error! path={}, part={}, create_strategy={:?}, {}",
path, part, create_strategy, e
);
error!("{}", msg);
BuckyError::new(e.code(), msg)
})?;The So, If I want to access the sub-branchs, I must create the But, I think the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have created the root as follow:
And, I can get root(95RvaS5btZzoP9ksvBkmED8VE2gXYnV6meo1GXu3WtDt) in other zone, part of the log is follow:
But, I cannot get the sub-branch(95RvaS5EgYVSZcV1Lisq9xtvuPs9cRu7Mxr8E5s7cfL2) for permissions:
There are the entire logs:
group-example_21068_r00002.log
The log is complicated, maybe I need a simple test case for it.
Beta Was this translation helpful? Give feedback.
All reactions