-
Notifications
You must be signed in to change notification settings - Fork 23
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
Expose Restart Cody
action
#1965
Expose Restart Cody
action
#1965
Conversation
Restart Cody
action
@@ -189,7 +189,8 @@ class CodyAgentService(private val project: Project) : Disposable { | |||
logger.error(msg) | |||
throw (CodyAgentException(msg)) | |||
} | |||
val agent = future.get(45, TimeUnit.SECONDS) | |||
|
|||
val agent = future.get(secondsTimeout, TimeUnit.SECONDS) |
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.
Change secondsTimeout
to 1
to test it.
fc5eaf7
to
b36b4b4
Compare
CodyStatus.CodyAgentNotRunning) { | ||
addAll( | ||
OpenLogAction(), | ||
AboutAction().apply { templatePresentation.text = "Open About To Troubleshoot Issue" }, |
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.
AboutAction
here seems to be redundant. It makes the action group overpopulated. The GitHub report fills the about info automatically.
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.
LGTM
a612833
to
10028ab
Compare
606b29e
into
pkukielka/improve-integration-tests
Related to #1964.
This PR exposes
Restart Cody
action (formerly Restart Cody Agent).Test plan
secondsTimeout
to1
to test it.Demo