Skip to content

Commit 438d25f

Browse files
Merge branch 'master' into pr-template-standardization
2 parents 0becb68 + 2ce7ce6 commit 438d25f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ compile_py_proto:
3838

3939
swig: compile_cpp_proto
4040
swig -c++ -python -py3 -outdir $(PYPKG_DIR) -o $(BUILD_DIR)/utils_wrap.cpp $(MISC_DIR)/utils.i
41-
g++ $(CXX_FLAGS) -shared -I$(PYINCLUDE) -fPIC -I$(MISC_DIR) -o $(PYPKG_DIR)/_utils.so $(MISC_DIR)/utils.cpp $(BUILD_DIR)/utils_wrap.cpp $(wildcard $(BUILD_DIR)/*.pb.cc) $(PYLIBRARY) -lprotobuf
41+
g++ $(CXX_FLAGS) -shared -I$(PYINCLUDE) -fPIC -I$(MISC_DIR) -o $(PYPKG_DIR)/_utils.so $(MISC_DIR)/utils.cpp $(BUILD_DIR)/utils_wrap.cpp $(wildcard $(BUILD_DIR)/*.pb.cc) -lprotobuf
4242

4343
clean:
4444
$(RM) $(BUILD_DIR)

proto/ha_scope_config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ message HaScopeConfig {
2121
}
2222

2323
message HaScopeConfigKey {
24-
string ha_scope_id = 1;
25-
string vdpu_id = 2;
24+
string vdpu_id = 1;
25+
string ha_scope_id = 2;
2626
}

0 commit comments

Comments
 (0)