我已经在 heroku 上部署了我的流星应用程序,并使用CollectionFS将图像文件上传到 Amazon S3。一切正常,直到我上传了几张图片,然后由于部署而不得不重新启动服务器。
我的转换代码:
transformWrite: function(fileObj, readStream, writeStream) {
try {
gm(readStream, fileObj.name()).resize(width, height, opts.resize).interlace(opts.interlace).stream().pipe(writeStream);
} catch (error) {
throw new Meteor.Error(error);
}
}
但是自从第一次重新启动以来,我一直无法重新启动服务器。这是我遇到的错误。
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch.
Stopping process with SIGKILL
FS.Transform.createWriteStream transform function failed, Error:
Exception in queued task: TypeError: Cannot read property 'resize' of undefined
State changed from starting to crashed
Process exited with status 137
目前,我已经注释掉了所有的 collectionFS 代码,这有助于我恢复网站。该代码在本地运行良好,但是,heroku 部署不断失败。