Merge pull request #15767 from dfr/freebsd-events

events: Fix spelling of newNullEventer
This commit is contained in:
OpenShift Merge Robot 2022-09-13 12:33:57 +02:00 committed by GitHub
commit eb69259305
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ func NewEventer(options EventerOptions) (Eventer, error) {
case strings.ToUpper(LogFile.String()):
return EventLogFile{options}, nil
case strings.ToUpper(Null.String()):
return NewNullEventer(), nil
return newNullEventer(), nil
case strings.ToUpper(Memory.String()):
return NewMemoryEventer(), nil
default: