summaryrefslogtreecommitdiffstats
path: root/plugins/livestatus.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/livestatus.py')
-rw-r--r--plugins/livestatus.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/livestatus.py b/plugins/livestatus.py
index 4145c70..be438d4 100644
--- a/plugins/livestatus.py
+++ b/plugins/livestatus.py
@@ -41,7 +41,7 @@ def readLiveStatus(cmd):
s.shutdown(socket.SHUT_WR)
# Read the answer
- answer = s.recv(8192)
+ answer = s.recv(1000000)
# Parse the answer into a table
table = [line.split('|') for line in answer.split('\n')[:-1]]
@@ -60,7 +60,7 @@ def readLiveStatusAsJSON(cmd):
s.shutdown(socket.SHUT_WR)
# Read the answer
- answer = s.recv(8192)
+ answer = s.recv(1000000)
# return the result
return answer