-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid hacks in Proxy's src/server.rs (#5622)
ref #5170
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tiflash-proxy
updated
20 files
+2 −2 | .github/workflows/pr-ci.yml | |
+1 −0 | Cargo.lock | |
+12 −0 | components/proxy_server/src/config.rs | |
+53 −0 | components/proxy_server/src/hacked_lock_mgr.rs | |
+1 −0 | components/proxy_server/src/lib.rs | |
+49 −26 | components/proxy_server/src/proxy.rs | |
+27 −3 | components/proxy_server/src/run.rs | |
+11 −6 | components/proxy_server/src/setup.rs | |
+11 −9 | components/server/src/server.rs | |
+0 −18 | components/server/src/setup.rs | |
+1 −0 | components/test_raftstore/src/node.rs | |
+4 −3 | components/test_raftstore/src/server.rs | |
+1 −0 | new-mock-engine-store/src/node.rs | |
+0 −155 | readme.md | |
+2 −14 | src/server/config.rs | |
+1 −46 | src/server/lock_manager/mod.rs | |
+32 −26 | src/server/node.rs | |
+1 −0 | tests/Cargo.toml | |
+1 −0 | tests/integrations/raftstore/test_bootstrap.rs | |
+35 −0 | tests/proxy/normal.rs |