Coder Social home page Coder Social logo

Comments (6)

patrickleet avatar patrickleet commented on August 14, 2024

Release [email protected]
Versions:
meteorhacks:[email protected]
meteorhacks:[email protected]

from kadira.

patrickleet avatar patrickleet commented on August 14, 2024

Deploying on Modulus, FYI

from kadira.

patrickleet avatar patrickleet commented on August 14, 2024

Looks like that's the uncaughtException block - may be coming from somewhere else then? It works locally though

process.on('uncaughtException', function (err) { // 1
// let the server crash normally if error tracking is disabled // 2
if(!Kadira.options.enableErrorTracking) { // 3
throw err; // 4
} // 5
// 6
// looking for already tracked errors and throw them immediately // 7
// throw error immediately if kadira is not ready // 8
if(err._tracked || !Kadira.connected) { // 9
throw err; // 10
} // 11
// 12
var trace = getTrace(err, 'server-crash', 'uncaughtException'); // 13
Kadira.models.error.trackError(err, trace); // 14
Kadira.sendPayload(function () { // 15
clearTimeout(timer); // 16
throwError(err); // 17
}); // 18
// 19
var timer = setTimeout(function () { // 20
throwError(err); // 21
}, 1000*10); // 22
// 23
function throwError(err) { // 24
// sometimes error came back from a fiber. // 25
// But we don't fibers to track that error for us // 26
// That's why we throw the error on the nextTick // 27
process.nextTick(function() { // 28
// we need to mark this error where we really need to throw // 29
err._tracked = true; // 30
throw err; // 31
}); // 32
} // 33
});

from kadira.

arunoda avatar arunoda commented on August 14, 2024

Yes. We track uncaughtExceptions, that's why you are getting this. Did you
talk to modulus guys?
Are you setting up the PORT env variable? If so, please avoid using it.

On Thursday, September 18, 2014, Patrick Scott [email protected]
wrote:

Looks like that's the uncaughtException block - may be coming from
somewhere else then? It works locally though

process.on('uncaughtException', function (err) { // 1
// let the server crash normally if error tracking is disabled // 2
if(!Kadira.options.enableErrorTracking) { // 3
throw err; // 4
} // 5
// 6
// looking for already tracked errors and throw them immediately // 7
// throw error immediately if kadira is not ready // 8
if(err._tracked || !Kadira.connected) { // 9
throw err; // 10
} // 11
// 12
var trace = getTrace(err, 'server-crash', 'uncaughtException'); // 13
Kadira.models.error.trackError(err, trace); // 14
Kadira.sendPayload(function () { // 15
clearTimeout(timer); // 16
throwError(err); // 17
}); // 18
// 19
var timer = setTimeout(function () { // 20
throwError(err); // 21
}, 1000*10); // 22
// 23
function throwError(err) { // 24
// sometimes error came back from a fiber. // 25
// But we don't fibers to track that error for us // 26
// That's why we throw the error on the nextTick // 27
process.nextTick(function() { // 28
// we need to mark this error where we really need to throw // 29
err._tracked = true; // 30
throw err; // 31
}); // 32
} // 33
});


Reply to this email directly or view it on GitHub
#81 (comment).


Arunoda Susiripala
I curate Meteor Weekly - Check it out!
http://meteorhacks.com/meteor-weekly/?utm_source=email-footer&utm_medium=email&utm_campaign=meteorweekly

from kadira.

patrickleet avatar patrickleet commented on August 14, 2024

Yea the issue was on their end, a rogue node process on the servo

Thanks!

from kadira.

arunoda avatar arunoda commented on August 14, 2024

Okay. Good to know.

On Thursday, September 18, 2014, Patrick Scott [email protected]
wrote:

Closed #81 #81.


Reply to this email directly or view it on GitHub
#81 (comment).


Arunoda Susiripala

@arunoda http://twitter.com/arunoda
http://gplus.to/arunodahttps://github.com/arunoda
http://www.linkedin.com/in/arunoda

from kadira.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.