-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[Discussion] ServiceController API needs some improvements #765
Comments
We would certainly be interested in a PR that makes the exception(s) more useful. |
Ok, I'll look into it when I have some time. Can you point me in the right direction on how to change/add new exception message resources? (is some special operation needed?) |
No special process for the exceptions..just a PR. @Anipik is owner of this area and could comment on the other two suggestions |
@Fs00 I will take a look at the two proposals and update the issue. |
@Anipik Any news on those two proposals? |
i will get back to u by tonight |
You can write api proposal for it and we will happy to take it. Here is goo example of an proposal #15725
Feel free to throw up a pr to improve this. |
@Anipik After some thoughts, I've decided that it's better for consistency and compatibility to leave the Stop() method as-is. Instead, I've made a proposal for a new Stop overload with the improvements I'd like to see. |
Merge from dotnet/runtime:main
@Fs00 thank you for your contributions! We have many other issues (mostly marked 'up-for-grabs') in case you are interested in continuing to contribute. Perhaps there is another bug you feel passionately about. |
I've been using the ServiceController class for some time now in an application of mine and I personally find that some features of the API could be improved. Here they are:
Which service takes even half of that time to stop itself? In my experience, when a stop request timed out instead of taking a couple of seconds to complete, it was because the dependent service somehow ignored it and refused to stop, causing my application to wait 30 seconds uselessly without having the ability to prevent it.
I would suggest to reduce the timeout to something around 10 secs and/or add an overload to Stop that accepts a TimeSpan that specifies the timeout.
The function
DoStopSvc
in this official WinAPI example checks if a stop is already pending before sending the stop control to the service, and in any case it waits for the service to stop before returning. Could ServiceController.Stop do the same? Waiting for a service to become stopped after a stop request is such a common use case that would be very convenient if Stop did it (it already does it when stopping dependent services).The Stop method can raise a TimeoutException when a dependent service can't be stopped in time. The problem is that the exception doesn't tell which is the service that caused the timeout. Could this information be added in the message?
If you decide it's ok to proceed with these changes, I can take care of implementing them (for the last one I'd need some guidance on how to change exception messages resources).
PS: I wasn't sure whether to split this issue in multiple ones at this time since it is meant as a discussion on the topic.
The text was updated successfully, but these errors were encountered: