Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make subscription details not-nullable for Go codes #26

Merged
merged 1 commit into from
Dec 10, 2020
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
222 changes: 104 additions & 118 deletions go/onos/e2sub/subscription/subscription.pb.go

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

4 changes: 2 additions & 2 deletions proto/onos/e2sub/subscription/subscription.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ message Subscription {
uint64 revision = 2 [(gogoproto.casttype) = "Revision"];
string app_id = 3 [(gogoproto.casttype) = "AppID", (gogoproto.customname) = "AppID"];
string e2_node_id = 4 [(gogoproto.casttype) = "E2NodeID", (gogoproto.customname) = "E2NodeID"];
ServiceModel service_model = 5;
SubscriptionDetails details = 6;
ServiceModel service_model = 5 [(gogoproto.nullable) = false];
SubscriptionDetails details = 6 [(gogoproto.nullable) = false];
Lifecycle lifecycle = 7 [(gogoproto.nullable) = false];
}

Expand Down