Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Komissarov committed Mar 25, 2024
1 parent 0c9cd49 commit 8219aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TmsRunner/Client/TmsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public TmsClient(TmsSettings settings)
cfg.AddApiKey("Authorization", settings.PrivateToken);

var httpClientHandler = new HttpClientHandler();
httpClientHandler.ServerCertificateCustomValidationCallback = (_, _, _, _) => _settings.CertValidation;
httpClientHandler.ServerCertificateCustomValidationCallback = (_, _, _, _) => false;

_testRuns = new TestRunsApi(new HttpClient(), cfg, httpClientHandler);
_attachments = new AttachmentsApi(new HttpClient(), cfg, httpClientHandler);
Expand Down

0 comments on commit 8219aa0

Please sign in to comment.