File tree 1 file changed +3
-3
lines changed
enterprise/coderd/prebuilds
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -411,15 +411,15 @@ func TestPrebuildReconciliation(t *testing.T) {
411
411
}
412
412
}
413
413
414
- // brokenPublisher is used to validate that Publish() calls which always fail do not affect the reconciler's behaviour ,
414
+ // brokenPublisher is used to validate that Publish() calls which always fail do not affect the reconciler's behavior ,
415
415
// since the messages published are not essential but merely advisory.
416
416
type brokenPublisher struct {
417
417
pubsub.Pubsub
418
418
}
419
419
420
- func (b * brokenPublisher ) Publish (event string , _ []byte ) error {
420
+ func (* brokenPublisher ) Publish (event string , _ []byte ) error {
421
421
// I'm explicitly _not_ checking for EventJobPosted (coderd/database/provisionerjobs/provisionerjobs.go) since that
422
- // required too much knowledge of the underlying implementation.
422
+ // requires too much knowledge of the underlying implementation.
423
423
return xerrors .Errorf ("refusing to publish %q" , event )
424
424
}
425
425
You can’t perform that action at this time.
0 commit comments