mirror of
https://github.com/openai/codex.git
synced 2026-09-13 11:47:17 +00:00
Revert exec-server filesystem default wiring
Restore codex-rs/exec-server/src/server/filesystem.rs to the main-branch version as requested. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -22,8 +22,8 @@ use codex_app_server_protocol::JSONRPCErrorError;
|
||||
|
||||
use crate::CopyOptions;
|
||||
use crate::CreateDirectoryOptions;
|
||||
use crate::Environment;
|
||||
use crate::ExecutorFileSystem;
|
||||
use crate::LocalFileSystem;
|
||||
use crate::RemoveOptions;
|
||||
use crate::rpc::internal_error;
|
||||
use crate::rpc::invalid_request;
|
||||
@@ -36,7 +36,7 @@ pub(crate) struct ExecServerFileSystem {
|
||||
impl Default for ExecServerFileSystem {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
file_system: Arc::new(LocalFileSystem),
|
||||
file_system: Arc::new(Environment.get_filesystem()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user