Skip to content
Snippets Groups Projects
Commit 110046f5 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Use buf.getvalue() instead of buf.read() to send miniseed

parent f2bff535
No related branches found
No related tags found
2 merge requests!146Release CMO metadata to production,!77Use buf.getvalue() instead of buf.read() to send miniseed
...@@ -73,4 +73,4 @@ class MiniSeedInputClient(object): ...@@ -73,4 +73,4 @@ class MiniSeedInputClient(object):
buf = io.BytesIO() buf = io.BytesIO()
stream.write(buf, format="MSEED") stream.write(buf, format="MSEED")
# send data # send data
self.socket.sendall(buf.read()) self.socket.sendall(buf.getvalue())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment