-
Notifications
You must be signed in to change notification settings - Fork 20
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
feat: implement get create list experiments no command #1468
base: main
Are you sure you want to change the base?
Conversation
8b34aa4
to
c916823
Compare
proto/experiment/service.proto
Outdated
string feature_id = 4; | ||
int64 start_at = 5; | ||
int64 stop_at = 6; | ||
repeated string goal_ids = 7; | ||
string name = 8; | ||
string description = 9; | ||
string base_variation_id = 10; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Besides the description, all fields are required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added required field behavior, and also add the count of waiting, running and stopped experiment
f03a9d5
to
9af6ab8
Compare
Part of #1417