Skip to content

Commit 39f1478

Browse files
authored
Merge pull request #19 from essentialkaos/develop
Version 3.0.2
2 parents 6f52cc6 + 395b52f commit 39f1478

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ sudo: required
33
language: go
44

55
go:
6-
- 1.8.x
7-
- 1.9.x
86
- 1.10.x
7+
- 1.11.x
98
- tip
109

1110
os:

common/redis-latency-monitor.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
Summary: Tiny Redis client for latency measurement
1212
Name: redis-latency-monitor
13-
Version: 3.0.1
13+
Version: 3.0.2
1414
Release: 0%{?dist}
1515
Group: Applications/System
1616
License: EKOL
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
5858
################################################################################
5959

6060
%changelog
61+
* Sat Oct 20 2018 Anton Novojilov <[email protected]> - 3.0.2-0
62+
- Show usage info if '-h' passed without any value
63+
6164
* Thu Dec 21 2017 Anton Novojilov <[email protected]> - 3.0.1-0
6265
- Minor UI fixes
6366

redis-latency-monitor.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
// App info
3535
const (
3636
APP = "Redis Latency Monitor"
37-
VER = "3.0.1"
37+
VER = "3.0.2"
3838
DESC = "Tiny Redis client for latency measurement"
3939
)
4040

@@ -64,7 +64,7 @@ const (
6464

6565
// optMap is map with options
6666
var optMap = options.Map{
67-
OPT_HOST: {Value: "127.0.0.1"},
67+
OPT_HOST: {Type: options.MIXED, Value: "127.0.0.1"},
6868
OPT_PORT: {Value: "6379"},
6969
OPT_CONNECT: {Type: options.BOOL},
7070
OPT_TIMEOUT: {Type: options.INT, Value: 3, Min: 1, Max: 300},
@@ -114,7 +114,7 @@ func main() {
114114
return
115115
}
116116

117-
if options.GetB(OPT_HELP) {
117+
if options.GetB(OPT_HELP) || options.GetS(OPT_HOST) == "true" {
118118
showUsage()
119119
return
120120
}

0 commit comments

Comments
 (0)