You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kubernetes-watch/src/Kubernetes/Watch/Client.hs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ just streams to stdout. First some setup - this assumes kubernetes is accessible
48
48
at http://localhost:8001, e.g. after running /kubectl proxy/:
49
49
50
50
@
51
-
import qualified Data.ByteString.Streaming.Char8 as Q -- from <https://hackage.haskell.org/package/streaming-bytestring-0.1.5/docs/Data-ByteString-Streaming-Char8.html streaming-bytestring>
51
+
import qualified Data.ByteString.Streaming.Char8 as Q
52
52
53
53
manager <- newManager defaultManagerSettings
54
54
defaultConfig <- newConfig
@@ -80,7 +80,7 @@ withHTTP ::
80
80
->Manager
81
81
-> (Response (Q.ByteStringIO()) ->IOa)
82
82
->IOa
83
-
withHTTP response manager f = withResponse response manager f'
83
+
withHTTP request manager f = withResponse request manager f'
0 commit comments