concurrent
concurrent copied to clipboard
Get rid of `context.TODO()`
Our code analysis is flagging the use of context.TODO()
in NewUnboundedExecutor.
What is the intent here? To pass a context to the constructor or if not, should context.TODO()
be replaced by context.Background()
?