Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

refactor: move remote_cmd module from src/dist/cmd to src/remote_cmd #539

Merged
merged 4 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions compile_thrift.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@
},
{
"name": "command",
"path": "src/dist/cmd",
"path": "src/remote_cmd",
"file_move": {
"_types.h": "src/dist/cmd",
"_types.cpp": "src/dist/cmd"
"_types.h": "src/remote_cmd",
"_types.cpp": "src/remote_cmd"
}
}
]
Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ if(UNIX)
endif()
add_subdirectory(core)
add_subdirectory(dist)
add_subdirectory(remote_cmd)
add_subdirectory(tests)
1 change: 0 additions & 1 deletion src/dist/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ add_subdirectory(replication)
add_subdirectory(failure_detector_multimaster)
add_subdirectory(block_service)
add_subdirectory(nfs)
add_subdirectory(cmd)
add_subdirectory(http)