Skip to content

Commit 31420b4

Browse files
committed
Use decode-stream instead of decode-channel for consumer
They are the same function, but decode-stream is the 'master', and decode-channel has been def'd to equal decode-stream.
1 parent ab06b56 commit 31420b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rethinkdb/net.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
(-> json
139139
(json/parse-string-strict true)
140140
parse-response)))
141-
(io/decode-channel (:client @conn) query-protocol)))
141+
(io/decode-stream (:client @conn) query-protocol)))
142142

143143

144144
(defn add-global-optargs [{:keys [db]} query]

0 commit comments

Comments
 (0)