diff -r 9ce613d648de -r 065048e66f32 rust/chg/src/locator.rs --- a/rust/chg/src/locator.rs Sun Oct 07 16:14:21 2018 +0900 +++ b/rust/chg/src/locator.rs Thu Oct 04 22:44:37 2018 +0900 @@ -24,8 +24,14 @@ use super::message::{Instruction, ServerSpec}; use super::procutil; -const REQUIRED_SERVER_CAPABILITIES: &[&str] = - &["attachio", "chdir", "runcommand", "setenv", "validate"]; +const REQUIRED_SERVER_CAPABILITIES: &[&str] = &[ + "attachio", + "chdir", + "runcommand", + "setenv", + "setumask2", + "validate", +]; /// Helper to connect to and spawn a server process. #[derive(Clone, Debug)]