Skip to content

Commit

Permalink
[riak] remove custom tags from service_checks_tags
Browse files Browse the repository at this point in the history
  • Loading branch information
degemer committed Apr 9, 2015
1 parent e2099fe commit 305e30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks.d/riak.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def check(self, instance):
default_timeout = self.init_config.get('default_timeout', 5)
timeout = float(instance.get('timeout', default_timeout))
tags = instance.get('tags', [])
service_check_tags = tags + ['url:%s' % url]
service_check_tags = ['url:%s' % url]

try:
h = Http(timeout=timeout)
Expand Down

0 comments on commit 305e30d

Please sign in to comment.