-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add flags to disable video recording and performance metrics #149
Conversation
It'd be awesome if you could update the release notes for this feature: |
@@ -37,6 +38,7 @@ public void runGcloud(String testCase, String bucket, int shardIndex) | |||
"instrumentation", | |||
orchestratorFlag(), | |||
autoGoogleLoginFlag(), | |||
recordVideoFlag(), |
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.
performanceMetricsFlag() isn't used?
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.
🤦♂️ Will fix.
} | ||
|
||
public void setRecordVideo(boolean shouldRecordVideo) { | ||
recordVideo = shouldRecordVideo; |
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.
the pattern seems to be:
this.recordVideo = recordVideo
It'd be nice to keep the code style consistent.
One small comment, otherwise looks good. |
No description provided.