2014-12-18 27 views
1

我們在heroku上運行節點應用程序。該應用程序使傳出的https連接到許多服務,但我們不能重現我們的任何這些服務的問題。我們偶爾會(在最後30分鐘6次)出現這個錯誤出現,並有一個很難跟蹤下來:查找heroku節點上CERT_UNTRUSTED錯誤的來源

Error: CERT_UNTRUSTED 
    at SecurePair.<anonymous> (tls.js:1381:32) 
    at SecurePair.emit (events.js:92:17) 
    at SecurePair.maybeInitFinished (tls.js:980:10) 
    at CleartextStream.read [as _read] (tls.js:472:13) 
    at CleartextStream.Readable.read (_stream_readable.js:341:10) 
    at EncryptedStream.write [as _write] (tls.js:369:25) 
    at doWrite (_stream_writable.js:226:10) 
    at writeOrBuffer (_stream_writable.js:216:5) 
    at EncryptedStream.Writable.write (_stream_writable.js:183:11) 
    at write (_stream_readable.js:602:24) 
    at flow (_stream_readable.js:611:7) 
    at Socket.pipeOnReadable (_stream_readable.js:643:5) 
    at Socket.emit (events.js:92:17) 
    at emitReadable_ (_stream_readable.js:427:10) 
    at emitReadable (_stream_readable.js:423:5) 
    at readableAddChunk (_stream_readable.js:166:9) 
    at Socket.Readable.push (_stream_readable.js:128:10) 
    at TCP.onread (net.js:529:21) 
    at TCP.onread (/app/node_modules/newrelic/node_modules/continuation-local-storage/node_modules/async-listener/glue.js:177:31) 

有關文件的唯一線索是底部的NewRelic的模塊,我以爲會在任何堆棧跟蹤中。有沒有人有建議找出這個錯誤來自哪裏?

回答