We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug GRPC Executor doesn t close connection after exec
To Reproduce Steps to reproduce the behavior:
netstat -nep | grep ESTABLISHED| wc -l
Expected behavior After job exec connection over grpc must be closed
Additional context I have think about problem in after error check https://github.com/distribworks/dkron/blob/master/builtin/bins/dkron-executor-grpc/grpc.go#L94 This line doesn t have defer cc.Close()
defer cc.Close()
The text was updated successfully, but these errors were encountered:
fixed distribworks#1236 isuse in main repo
281eefa
distribworks#1236 fixed for PR
c4b2dcb
ad0c608
No branches or pull requests
Describe the bug
GRPC Executor doesn t close connection after exec
To Reproduce
Steps to reproduce the behavior:
netstat -nep | grep ESTABLISHED| wc -l
in cli on container (docker), we get many open connectionExpected behavior
After job exec connection over grpc must be closed
Additional context
I have think about problem in after error check https://github.com/distribworks/dkron/blob/master/builtin/bins/dkron-executor-grpc/grpc.go#L94
This line doesn t have
defer cc.Close()
The text was updated successfully, but these errors were encountered: