diff options
author | andreas128 <Andreas> | 2016-12-09 09:38:33 +0100 |
---|---|---|
committer | andreas128 <Andreas> | 2016-12-09 09:38:33 +0100 |
commit | bf1dcd15c041b73aeca73cd1aebe894d3128b4f2 (patch) | |
tree | 5714b5995198c7e55c8f11678f27249f8c335a79 /tcp_async.py | |
parent | f2b7d99828e9a9f9d849661a9e24280bbb78f30d (diff) | |
download | ODR-StaticPrecorrection-bf1dcd15c041b73aeca73cd1aebe894d3128b4f2.tar.gz ODR-StaticPrecorrection-bf1dcd15c041b73aeca73cd1aebe894d3128b4f2.tar.bz2 ODR-StaticPrecorrection-bf1dcd15c041b73aeca73cd1aebe894d3128b4f2.zip |
Add grid search in run.ipynb
Diffstat (limited to 'tcp_async.py')
-rw-r--r-- | tcp_async.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp_async.py b/tcp_async.py index 5cd4a20..05cadd7 100644 --- a/tcp_async.py +++ b/tcp_async.py @@ -28,7 +28,7 @@ class _TcpAsyncClient(threading.Thread): #Establish connection sock = None print("Connecting to asynchronous uhd message tcp port " + str(self.port)) - while 1: + while self.q_quit.empty(): try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((self.ip_address, self.port)) |