From 2e83efbe2bbb692bf079d75d70177ec4d0b1d1dd Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Sat, 2 Sep 2017 02:01:33 -0400 Subject: [PATCH] moves influx back to localhost --- src/influx.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/influx.rs b/src/influx.rs index 8c2d7e0..cc64e3e 100644 --- a/src/influx.rs +++ b/src/influx.rs @@ -23,8 +23,8 @@ use warnings::Warning; const WRITER_ADDR: &'static str = "ipc:///tmp/mm/influx"; //const WRITER_ADDR: &'static str = "tcp://127.0.0.1:17853"; const DB_NAME: &'static str = "mm"; -//const DB_HOST: &'static str = "http://localhost:8086/write"; -const DB_HOST: &'static str = "http://harrison.0ptimus.internal:8086/write"; +const DB_HOST: &'static str = "http://localhost:8086/write"; +//const DB_HOST: &'static str = "http://harrison.0ptimus.internal:8086/write"; const ZMQ_RCV_HWM: i32 = 0; const ZMQ_SND_HWM: i32 = 0;