我在项目中使用AWS lambda作为SQS侦听器。有时候我的日志没有响应,大部分时间都在工作。 代码
console.log('Befor Req ' + post_data);
// Set up the request
var post_req = http.request(post_options, function(res) {
res.setEncoding('utf8');
res.on('data', function (response) {
console.log('Request data' + post_data);
console.log('Response ' + response);
});
res.on('error', function (err) {
console.log(err);
})
});
// post the data
post_req.write(post_data);
post_req.end();
这里我在请求之前完成了所有工作,有时请求中的日志没有得到记录。 我检查对方请求和响应被记录,一切正常。
这是AWS LAMBDA的任何特定问题吗?