We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ea58ca commit 636f808Copy full SHA for 636f808
packages/edge/infra/client/manager/src/actor/mod.rs
@@ -205,7 +205,7 @@ impl Actor {
205
let mut runner_env = vec![
206
(
207
"ROOT_USER_ENABLED",
208
- self.config.root_user_enabled.to_string(),
+ if self.config.root_user_enabled { "1" } else { "0" }.to_string(),
209
),
210
("ACTOR_ID", self.actor_id.to_string()),
211
];
0 commit comments