Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Fix wrong data of rawResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
duythinht committed Jul 16, 2016
1 parent 4c5fdc1 commit 1045533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pumps/graylog.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (p *GraylogPump) WriteData(data []interface{}) error {
}).Fatal(err)
}

rResp, err := base64.StdEncoding.DecodeString(record.RawRequest)
rResp, err := base64.StdEncoding.DecodeString(record.RawResponse)

if err != nil {
log.WithFields(logrus.Fields{
Expand Down

0 comments on commit 1045533

Please sign in to comment.