From 7b7b95dad836602c0cb6c0ada8be68b66ff40a43 Mon Sep 17 00:00:00 2001 From: onizmx Date: Mon, 10 Jun 2024 13:21:11 +1200 Subject: [PATCH] gs: Line should contain less than 121 characters --- pkg/gatewayserver/scheduling/scheduler.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/gatewayserver/scheduling/scheduler.go b/pkg/gatewayserver/scheduling/scheduler.go index 317558a524..6fad2ea514 100644 --- a/pkg/gatewayserver/scheduling/scheduler.go +++ b/pkg/gatewayserver/scheduling/scheduler.go @@ -321,7 +321,8 @@ func (s *Scheduler) ScheduleAt(ctx context.Context, opts Options) (res Emission, var ok bool starts, ok = s.clock.FromGatewayTime(*ttnpb.StdTime(opts.Time)) if !ok { - // Bryan: we can simply fail here to block all Class B and C transmission when gateway gps time is nil in clock.go. + // Bryan: we can simply fail here to block all Class B and C transmission + // when gateway gps time is nil in clock.go. return Emission{}, 0, errNoAbsoluteGatewayTime.New() } } else {