Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
travis output for test
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamISZ committed Dec 19, 2015
1 parent 0ee74ab commit 749fd2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ script:
- cd test
- python regtest.py
- python wallet-test.py
- cd ../logs
- for x in `ls`; do tail -50 $x; done
branches:
only:
- develop
2 changes: 2 additions & 0 deletions joinmarket/irc.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def run(self):
pingmsg = self.irc.pingQ.get(block=False)
#ping messages are not counted to throttling totals,
#so send immediately
log.debug("sending: "+pingmsg)
self.irc.sock.sendall(pingmsg + '\r\n')
continue
except Queue.Empty:
Expand Down Expand Up @@ -113,6 +114,7 @@ def run(self):
except Queue.Empty:
#this code *should* be unreachable.
continue
log.debug("sending: "+throttled_msg)
self.irc.sock.sendall(throttled_msg+'\r\n')
last_msg_time = time.time()
self.msg_buffer.append((throttled_msg, last_msg_time))
Expand Down

0 comments on commit 749fd2a

Please sign in to comment.