Skip to content

Commit

Permalink
Fix normalizer output queue (#184)
Browse files Browse the repository at this point in the history
Fix normalizer output queue by changing subject to normalized.
Version updated from 0.1.0 to 0.1.1.

Signed-off-by: Aleksandar Novakovic <[email protected]>
  • Loading branch information
anovakovic01 authored and mijicd committed Mar 15, 2018
1 parent 5cb169f commit 2505057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion normalizer/normalizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (ef eventFlow) publish(msg mainflux.RawMessage) error {
return err
}

if err = ef.nc.Publish(subject, data); err != nil {
if err = ef.nc.Publish(output, data); err != nil {
ef.logger.Log("error", fmt.Sprintf("Publishing failed: %s", err))
return err
}
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
)

const version string = "0.1.0"
const version string = "0.1.1"

type response struct {
Version string
Expand Down

0 comments on commit 2505057

Please sign in to comment.