disable sending metrics to pusher

This commit is contained in:
Sven Fuchs 2013-11-15 17:59:42 +01:00
parent be63d535e1
commit f827c155f5

View File

@ -13,7 +13,7 @@ $.extend Travis.Pusher.prototype,
init: (config) ->
Pusher.warn = @warn.bind(this)
Pusher.host = config.host if config.host
@pusher = new Pusher(config.key, encrypted: Travis.Pusher.ENCRYPTED)
@pusher = new Pusher(config.key, encrypted: Travis.Pusher.ENCRYPTED, disableStats: true)
@subscribeAll(Travis.Pusher.CHANNELS) if Travis.Pusher.CHANNELS
@callbacksToProcess = []