Use default environment for exec-server filesystem

This commit is contained in:
won
2026-03-19 12:40:35 -07:00
parent 994ccf04c5
commit f0447a4ae9

View File

@@ -36,7 +36,7 @@ pub(crate) struct ExecServerFileSystem {
impl Default for ExecServerFileSystem {
fn default() -> Self {
Self {
file_system: Arc::new(Environment::get_filesystem()),
file_system: Arc::new(Environment::default().get_filesystem()),
}
}
}