Fix exec server filesystem environment construction

This commit is contained in:
Maja
2026-03-19 13:09:59 -07:00
parent 0add615c61
commit 4ee5bc799f

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()),
}
}
}