We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 713c7c9 commit 31f0a54Copy full SHA for 31f0a54
selenium/test/amqp.js
@@ -19,7 +19,7 @@ function getAmqpsConnectionOptions() {
19
options['enable_sasl_external'] = true
20
}
21
options['transport'] = 'tls'
22
- let certsLocation = getEnv("RABBITMQ_CERTS");
+ let certsLocation = process.env.RABBITMQ_CERTS
23
options['key'] = fs.readFileSync(path.resolve(certsLocation,'client_rabbitmq_key.pem'))
24
options['cert'] = fs.readFileSync(path.resolve(certsLocation,'client_rabbitmq_certificate.pem'))
25
options['ca'] = fs.readFileSync(path.resolve(certsLocation,'ca_rabbitmq_certificate.pem'))
0 commit comments