File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
.PHONY : rpm clean source test coverage
2
2
3
- KAFKA_OPS_VERSION ?= 1.0.2
3
+ KAFKA_OPS_VERSION ?= 1.0.3
4
4
BUILD_NUMBER ?= 1
5
5
KAFKA_OPS ?= kafka-ops
6
6
REPO ?= github.com/agapoff/${KAFKA_OPS}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
"text/template"
17
17
)
18
18
19
- const version string = "1.0.2 "
19
+ const version string = "1.0.3 "
20
20
21
21
var (
22
22
broker string
@@ -310,10 +310,10 @@ func applySpecFile() error {
310
310
broker = spec .Connection .Broker
311
311
}
312
312
if spec .Connection .Protocol != "" {
313
- protocol = spec .Connection .Protocol
313
+ protocol = strings . ToLower ( spec .Connection .Protocol )
314
314
}
315
315
if spec .Connection .Mechanism != "" {
316
- mechanism = spec .Connection .Mechanism
316
+ mechanism = strings . ToLower ( spec .Connection .Mechanism )
317
317
}
318
318
if spec .Connection .Username != "" {
319
319
username = spec .Connection .Username
You can’t perform that action at this time.
0 commit comments