Skip to content

Commit 636f808

Browse files
committed
fix(pegboard): fix enabling root users
1 parent 7ea58ca commit 636f808

File tree

1 file changed

+1
-1
lines changed
  • packages/edge/infra/client/manager/src/actor

1 file changed

+1
-1
lines changed

packages/edge/infra/client/manager/src/actor/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl Actor {
205205
let mut runner_env = vec![
206206
(
207207
"ROOT_USER_ENABLED",
208-
self.config.root_user_enabled.to_string(),
208+
if self.config.root_user_enabled { "1" } else { "0" }.to_string(),
209209
),
210210
("ACTOR_ID", self.actor_id.to_string()),
211211
];

0 commit comments

Comments
 (0)