Skip to content

Commit 782a9ba

Browse files
author
Gerad Suyderhoud
committed
disable rachet.io
(it was eff'ing up our error page)
1 parent c34cce7 commit 782a9ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/app.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var express = require('express')
66
, secrets = env.secrets
77
, EventEmitter = require('events').EventEmitter
88
, Stats = require('../models/stats')
9-
, ratchetio = require('ratchetio');
9+
// , ratchetio = require('ratchetio');
1010
require('jadevu');
1111

1212
// express
@@ -19,7 +19,7 @@ app.paths = {
1919
};
2020

2121
// uncaught error handling
22-
ratchetio.handleUncaughtExceptions('a99bad94e4ba4ec0b78dc90e033743b1');
22+
// ratchetio.handleUncaughtExceptions('a99bad94e4ba4ec0b78dc90e033743b1');
2323

2424
process.on('uncaughtException', function(e) {
2525
util.debug(e.stack.red);
@@ -106,7 +106,7 @@ app.configure(function() {
106106
app.use(app.router);
107107

108108
// request error handling
109-
app.use(ratchetio.errorHandler());
109+
// app.use(ratchetio.errorHandler());
110110

111111
app.use(function(e, req, res, next) {
112112
if (typeof(e) === 'number')

0 commit comments

Comments
 (0)