Skip to content

Commit 31f0a54

Browse files
Fix issue in amqp10
1 parent 713c7c9 commit 31f0a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

selenium/test/amqp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function getAmqpsConnectionOptions() {
1919
options['enable_sasl_external'] = true
2020
}
2121
options['transport'] = 'tls'
22-
let certsLocation = getEnv("RABBITMQ_CERTS");
22+
let certsLocation = process.env.RABBITMQ_CERTS
2323
options['key'] = fs.readFileSync(path.resolve(certsLocation,'client_rabbitmq_key.pem'))
2424
options['cert'] = fs.readFileSync(path.resolve(certsLocation,'client_rabbitmq_certificate.pem'))
2525
options['ca'] = fs.readFileSync(path.resolve(certsLocation,'ca_rabbitmq_certificate.pem'))

0 commit comments

Comments
 (0)