File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99 <a href="https://swiftpackageindex.com/swiftkube/client">
1010 <img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswiftkube%2Fclient%2Fbadge%3Ftype%3Dplatforms"/>
1111 </a>
12- <a href="https://v1-28.docs. kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/">
12+ <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/">
1313 <img src="https://img.shields.io/badge/Kubernetes-1.32.0-blue.svg" alt="Kubernetes 1.32.0"/>
1414 </a>
1515 <a href="https://swift.org/package-manager">
@@ -101,12 +101,12 @@ To create a client just import `SwiftkubeClient` and init an instance.
101101 ```
102102
103103You should shut down the ` KubernetesClient ` instance when you're done using it, which in turn shuts down the underlying
104- ` HTTPClient ` . Thus, you shouldn't call ` client.syncShutdown () ` before all requests have finished. You can also shut down
104+ ` HTTPClient ` . Thus, you shouldn't call ` client.shutdown () ` before all requests have finished. You can also shut down
105105the client asynchronously in an async/await context or by providing a ` DispatchQueue ` for the completion callback.
106106
107107``` swift
108108// when finished close the client
109- try client.syncShutdown ()
109+ try client.syncShutdown ()
110110
111111// async/await
112112try await client.shutdown ()
You can’t perform that action at this time.
0 commit comments