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

reportingservice_methods.go « lightstep_thrift « 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: 8a7864c2d4b1ce95d968310ff474d3bafe6da2f2 (plain)
1
2
3
4
5
6
7
8
9
10
package lightstep_thrift

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