File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2323 end
2424
2525 let ( :key_string ) do
26- File . read ( SpecConfig . instance . local_client_key_path )
26+ File . read ( SpecConfig . instance . client_key_path )
2727 end
2828
2929 let ( :cert_string ) do
30- File . read ( SpecConfig . instance . local_client_cert_path )
30+ File . read ( SpecConfig . instance . client_cert_path )
3131 end
3232
3333 let ( :ca_cert_string ) do
34- File . read ( SpecConfig . instance . local_ca_cert_path )
34+ File . read ( SpecConfig . instance . ca_cert_path )
3535 end
3636
3737 let ( :key_encrypted_string ) do
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ def local_client_key_path
282282
283283 def client_key_path
284284 if drivers_tools?
285- ENV [ 'DRIVER_TOOLS_CLIENT_KEY_PEM' ]
285+ " #{ drivers_tools } /.evergreen/x509gen/client.pem"
286286 else
287287 local_client_key_path
288288 end
@@ -338,7 +338,7 @@ def local_client_encrypted_key_path
338338
339339 def client_encrypted_key_path
340340 if drivers_tools?
341- ENV [ 'DRIVER_TOOLS_CLIENT_KEY_ENCRYPTED_PEM' ]
341+ " #{ drivers_tools } /.evergreen/x509gen/client-pkcs8-encrypted.pem"
342342 else
343343 local_client_encrypted_key_path
344344 end
You can’t perform that action at this time.
0 commit comments