Skip to content

Commit ad2af20

Browse files
committed
fix timeout bug at dump filelist
1 parent 27500af commit ad2af20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/xp3start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def dumpFileList(self, fileName, fileList):
167167
req.extractPath = dumpPath
168168
self.socket.send(req.SerializeToString())
169169
res = xp3proto_pb2.Response()
170-
res.ParseFromString(self.recv())
170+
res.ParseFromString(self.socket.recv())
171171
if res.retVal == 0:
172172
self.log("dump file list [%s] success" % fileName)
173173
else:

0 commit comments

Comments
 (0)