We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f0082 commit 43c1e2bCopy full SHA for 43c1e2b
Tests/CLITests/Subcommands/Run/TestCLIRunOptions.swift
@@ -449,7 +449,8 @@ class TestCLIRunCommand: CLITest {
449
let url = "http://\(proxyIp):\(proxyPort)"
450
var request = HTTPClientRequest(url: url)
451
request.method = .GET
452
- let client = getClient()
+ let config = HTTPClient.Configuration(proxy: nil)
453
+ let client = HTTPClient(eventLoopGroupProvider: .singleton, configuration: config)
454
defer { _ = client.shutdown() }
455
var retriesRemaining = retries
456
var success = false
0 commit comments