Welcome to mirror list, hosted at ThFree Co, Russian Federation.

collector.go « collectorpb « lightstep-tracer-go « lightstep « github.com « vendor - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d419bd24c24742d604b17981e716812b16f97eaa (plain)
1
2
3
4
5
6
7
8
9
10
package collectorpb

func (res *ReportResponse) Disable() bool {
	for _, command := range res.GetCommands() {
		if command.Disable {
			return true
		}
	}
	return false
}