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 1caecf5 commit 549dc3fCopy full SHA for 549dc3f
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