From a2935c9ea9a0df966e5511c5016747fdc4fed1a7 Mon Sep 17 00:00:00 2001 From: Brandon Weaver Date: Thu, 22 Dec 2016 14:00:41 -0600 Subject: [PATCH] Update client.rb Implying the protocol can lead to some very interesting headaches. --- lib/opentsdb/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/opentsdb/client.rb b/lib/opentsdb/client.rb index 8316ec6..f6b9066 100644 --- a/lib/opentsdb/client.rb +++ b/lib/opentsdb/client.rb @@ -42,7 +42,7 @@ def parse_queries(query_options = {}) private def query_url - "http://#{host}:#{port}/api/query" + "#{host}:#{port}/api/query" end end end