-
Notifications
You must be signed in to change notification settings - Fork 30
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
Add viewable cli process class #3358
Conversation
f053636
to
0429299
Compare
@@ -62,7 +62,12 @@ const sanitizeProperties = ( | |||
if (value === undefined || value === null) { | |||
continue | |||
} | |||
sanitizeProperty(eventName as string, sanitizedProperties, key, value) |
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.
[F] Not really sure why removing EventName.EXPERIMENTS_RUNNER_COMPLETED
caused eslint
to freak out here.
|
||
if (!killed && exitCode && stderr) { | ||
return sendErrorTelemetryEvent( | ||
EventName.EXPERIMENTS_RUNNER_COMPLETED, |
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.
[F] This event has been removed. We don't do this for any other processes that we start.
9bcbeaa
to
c758777
Compare
cc067d6
to
86d6d7c
Compare
Code Climate has analyzed commit 86d6d7c and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (85% is the threshold). This pull request will bring the total coverage in the repository to 96.0% (0.0% change). View more on Code Climate. |
Related to #3178 |
2/5
main
<- #3356 <- this <- #3359 <- #3361 <- #3362This PR adds a
ViewableCliProcess
class which groups together a process with a pseudoterminal instance. This will be used for things like showing logs for experiments running the queue and long-running processes like pull under certain circumstances.