Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
alok87 committed Dec 16, 2020
1 parent e15b171 commit 9e466db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Near real time cloud native data pipeline. Just another data pipeline.
## Install
The pipeline is a combination of services deployed independently.

- **RedshiftSink** Using the CRD written in this repo. [Instructions.](https://github.com/practo/tipoca-stream/blob/master/redshiftsink/README.md)
- **RedshiftSink** Using the CRD written in this repo. [Instructions and code.](https://github.com/practo/tipoca-stream/blob/master/redshiftsink/README.md)
```
kubectl get redshiftsink
```
Expand Down
2 changes: 1 addition & 1 deletion pkg/consumer/kafka_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func NewKafkaWatcher(brokers []string, version string) (KafkaWatcher, error) {
err = broker.Open(nil)
if err != nil {
return nil, fmt.Errorf(
"Cannot connect to broker: %s, err: %v", broker, err)
"Cannot connect to broker: %s, err: %v", brokers[0], err)
}

return &kafkaWatch{
Expand Down

0 comments on commit 9e466db

Please sign in to comment.