Skip to content

Commit

Permalink
Merge branch 'master' into concept_store_support
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaFernee committed Mar 29, 2017
2 parents c38916c + fc4de10 commit 425da23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ func runServer(port string, resourcePath string, awsRegion string, bucketName st
go c.Start()
defer c.Stop()
}

if err := http.ListenAndServe(":"+port, nil); err != nil {
log.Fatalf("Unable to start server: %v", err)
}
Expand Down
2 changes: 1 addition & 1 deletion service/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (r *S3QProcessor) ProcessMsg(m consumer.Message) {
var km KafkaMsg
b := []byte(m.Body)
if err := json.Unmarshal(b, &km); err != nil {
log.Errorf("Could not unmarshall message with ID=%v, error=%v", m.Headers["Message-Id"], err.Error())
log.Errorf("Could not unmarshall message with ID=%v, transaction_id=%v, error=%v", m.Headers["Message-Id"], tid, err.Error())
return
}

Expand Down

0 comments on commit 425da23

Please sign in to comment.