Getting HTTPClientError.cancelled on any request made
chellem opened this issue ยท 0 comments
chellem commented
๐ Reproduction steps
let client = Client()
.setEndpoint("https://192.168.73.147/v1") // Your API Endpoint
.setProject("6191fa814055a") // Your project ID
.setSelfSigned()
let account = Account(client)
account.create(email: "email@example.com", password: "password") { result in
DispatchQueue.main.async {
switch result {
case .failure(let error): print(error.message)
case .success(let user): print(String(describing: user))
}
}
}
๐ Expected behavior
// New user created?
๐ Actual Behavior
HTTPClientError.cancelled
2021-11-16 12:35:26.529613+0400 main[8722:1715522] [connection] nw_endpoint_handler_set_adaptive_read_handler [C2 192.168.73.147:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0, ipv4, dns)] unregister notification for read_timeout failed
2021-11-16 12:35:26.529971+0400 main[8722:1715522] [connection] nw_endpoint_handler_set_adaptive_write_handler [C2 192.168.73.147:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0, ipv4, dns)] unregister notification for write_timeout failed
๐ฒ Appwrite version
Version 0.10.x
๐ป Operating system
MacOS
๐งฑ Your Environment
I use AppWrite locally
๐ Have you spent some time to check if this issue has been raised before?
- I checked and didn't find similar issue
๐ข Have you read the Code of Conduct?
- I have read the Code of Conduct