Description
We occasionally use context.TODO() in non-example code. context.TODO() is functionally identical to context.Background() but semantically implies that we do not know what the context should be (as is the case with example code). This is not the case in production code, so we should replace usages of context.TODO() with context.Background() or a more appropriate context.
In single_result.go.
In topology.go.