実験用に立てたRiakCSに接続しようとするとSSL証明書絡みでエラーになる。
回避用のおまじない。
var https = require('https');
AWS.config.httpOptions = {
agent: new https.Agent({
rejectUnauthorized: false
})
};
Go to list of users who liked
More than 5 years have passed since last update.
実験用に立てたRiakCSに接続しようとするとSSL証明書絡みでエラーになる。
回避用のおまじない。
var https = require('https');
AWS.config.httpOptions = {
agent: new https.Agent({
rejectUnauthorized: false
})
};
Register as a new user and use Qiita more conveniently
Go to list of users who liked