Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1233 from mozilla-services/default_encoder_panic
Browse files Browse the repository at this point in the history
Fix category check for common output default values.
  • Loading branch information
Mike Trinkala committed Dec 19, 2014
2 parents 2f7dd9f + e44e30b commit 6960625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ func (m *pluginMaker) MakeRunner(name string) (PluginRunner, error) {
}
}

if m.commonConfig.Typ == "Output" {
if m.category == "Output" {
if commonFO.UseFraming == nil {
useFraming := getAttr(m.configStruct, "UseFraming", false)
switch useFraming := useFraming.(type) {
Expand Down

0 comments on commit 6960625

Please sign in to comment.