dimanche 15 mars 2015

RangeError: Maximum call stack size exceeded on Modulus.io Server

I deployed my Meteor app on Modulus via their command line tools. I'm using v1.0.4rc4 of Meteor. After starting up the server everything works fine for a short time. After some time the server throws the following error and restarts when accessed by a client:



/mnt/data/1/node_modules/fibers/future.js:245
throw(ex);
^
RangeError: Maximum call stack size exceeded


I never had that problem in my development environment and could not find anything about it online. Any idea what causes this?


1 commentaire:

  1. Try add this on /home/temu/.openshift/action_hooks/build and git push again

    (cd "${OPENSHIFT_REPO_DIR}/programs/server/npm/npm-bcrypt/node_modules"; rm -rf bcrypt)
    (cd "${OPENSHIFT_REPO_DIR}/programs/server";export TMPDIR="tmp"; npm install bcrypt -d --cache ${OPENSHIFT_DATA_DIR})
    (cd "${OPENSHIFT_REPO_DIR}/programs/server/npm/sacha:juice/node_modules"; rm -rf juice; rm -rf .bin)
    (cd "${OPENSHIFT_REPO_DIR}/programs/server";export TMPDIR="tmp"; npm install juice -d --cache ${OPENSHIFT_DATA_DIR})

    RépondreSupprimer