We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e576af4 commit 1edfbccCopy full SHA for 1edfbcc
3 files changed
riemann_client/__init__.py
@@ -1,4 +1,4 @@
1
"""A Python Riemann client and command line tool"""
2
3
-__version__ = '4.1.0'
+__version__ = '4.1.1'
4
__author__ = 'Sam Clements <sam.clements@datasift.com>'
riemann_client/command.py
@@ -79,7 +79,7 @@ def send_function(args, client):
79
host=args.event_host,
80
description=args.description,
81
service=args.service,
82
- tags=args.tags,
+ tags=map(str.strip, args.tags.split(',')),
83
ttl=args.ttl,
84
metric_f=args.metric)
85
@@ -98,7 +98,7 @@ def send_function(args, client):
98
(['-e', '--event-host'], str, "Host"),
99
(['-D', '--description'], str, "Description"),
100
(['-s', '--service'], str, "Service"),
101
- (['-T', '--tags'], list, "Tags"),
+ (['-T', '--tags'], str, "Comma seperated list of tags"),
102
(['-l', '--ttl'], int, "Time to live"),
103
(['-m', '--metric'], float, "Value")]
104
setup.py
@@ -4,7 +4,7 @@
5
setuptools.setup(
6
name='riemann-client',
7
- version='4.1.0',
+ version='4.1.1',
8
9
author="Sam Clements",
10
author_email="sam.clements@datasift.com",
0 commit comments