From 986675cc4d47be5f06c911831fde993d8a2d2d22 Mon Sep 17 00:00:00 2001 From: Justin Li Date: Sat, 30 Nov 2013 23:13:30 -0500 Subject: [PATCH] Fix stats test and stop spamming people --- .travis.yml | 1 + config/example.json | 4 ++-- server/stats_test.go | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0dec0fc..b4e3186 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,3 +14,4 @@ notifications: - "irc.freenode.net#chihaya" on_success: always on_failure: always + email: false diff --git a/config/example.json b/config/example.json index aa85f77..90c098f 100644 --- a/config/example.json +++ b/config/example.json @@ -4,7 +4,7 @@ "addr": ":80", "cache": { - "driver": "redis", + "driver": "mock", "network": "tcp", "host": "127.0.0.1", "port": "6379", @@ -17,7 +17,7 @@ }, "storage": { - "driver": "batter", + "driver": "gazelle", "host": "127.0.0.1", "port": "5432", "user": "postgres", diff --git a/server/stats_test.go b/server/stats_test.go index 55a4ed2..7b6dd2f 100644 --- a/server/stats_test.go +++ b/server/stats_test.go @@ -13,6 +13,7 @@ import ( "github.com/chihaya/chihaya/config" + _ "github.com/chihaya/chihaya-gazelle" _ "github.com/chihaya/chihaya/storage/tracker/mock" )