Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

perf(rome_service): increase the throughput of the remote daemon transport #3151

Merged
merged 6 commits into from
Sep 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/rome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ serde = { version = "1.0.133", features = ["derive"] }
serde_json = { version = "1.0.74" }
tokio = { version = "1.15.0", features = ["io-std", "io-util", "net", "time", "rt", "rt-multi-thread", "macros"] }
anyhow = "1.0.52"
dashmap = "5.2.0"
MichaReiser marked this conversation as resolved.
Show resolved Hide resolved

[target.'cfg(unix)'.dependencies]
libc = "0.2.127"
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_cli/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pub(crate) fn execute_mode(mode: Execution, mut session: CliSession) -> Result<(
let can_format = workspace.supports_feature(SupportsFeatureParams {
path: rome_path.clone(),
feature: FeatureName::Format,
});
})?;
if can_format {
workspace.open_file(OpenFileParams {
path: rome_path.clone(),
Expand Down
Loading