From f0d2dfff84c8987b575fe8d7b3b58bdc754afd85 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Thu, 11 Apr 2019 11:58:13 -0400 Subject: [PATCH] Remove honeycomb code from config.ru (#2378) --- config.ru | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/config.ru b/config.ru index eee1402bf..193e5fed8 100644 --- a/config.ru +++ b/config.ru @@ -1,14 +1,4 @@ # This file is used by Rack-based servers to start the application. -# Honeycomb must be initialized before the Rails app starts -# see for details -require "honeycomb-beeline" -Honeycomb.init( - writekey: ENV["HONEYCOMB_API_KEY"], - # NOTE: dataset should probably be set using "HONEYCOMB_DATASET" env, - # to avoid hardcoding "dev.to" as a name - dataset: "dev.to-#{ENV['RAILS_ENV']}", -) - require ::File.expand_path("../config/environment", __FILE__) run Rails.application