Skip to content

Commit

Permalink
(NEXMANAGE-683) Remove service_type from Operation in common.proto
Browse files Browse the repository at this point in the history
  • Loading branch information
gblewis1 committed Sep 11, 2024
1 parent f1a2808 commit 2b8a475
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions inbm/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Updated proto files to add new RPC calls to allow edge node to update
its status with INBS.

### Changed
- (NEXMANAGE-683) Remove service_type from Operation in common.proto

## 4.2.5 - 2024-09-04
### Fixed
- Added #!/usr/bin/python3 lines to agents to work in source install mode.
Expand Down
13 changes: 5 additions & 8 deletions inbm/proto/common/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,11 @@ message RepeatedSchedule {
message Operation {
repeated PreOperation pre_operations = 1;
repeated PostOperation post_operations = 2;
enum ServiceType {
SERVICE_TYPE_UNSPECIFIED = 0;
SERVICE_TYPE_INBS = 1;
SERVICE_TYPE_OOB_AMT = 2;
SERVICE_TYPE_OOB_BMC = 3;
SERVICE_TYPE_AUTO = 4;
}
ServiceType service_type = 3;

// removed service_type field
reserved 3;
reserved "service_type";

oneof operation {
UpdateSystemSoftwareOperation update_system_software_operation = 4;
SetPowerStateOperation set_power_state_operation = 5;
Expand Down

0 comments on commit 2b8a475

Please sign in to comment.