diff --git a/pkg/util/sla.go b/pkg/util/sla.go new file mode 100644 index 0000000..ede78b1 --- /dev/null +++ b/pkg/util/sla.go @@ -0,0 +1,8 @@ +package util + +import "time" + +const ( + // SLATimeout is the max duration after which any network call/context should be aborted. + SLATimeout = 5 * time.Second +)