Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Otoru authored May 13, 2019
1 parent a5f9f16 commit f3166fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysip/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def send_loop(socket, size, loop):
status.append(data.upper() == response)
durations.append(end - start)

except ConnectionRefusedError:
except (ConnectionRefusedError, OSError):
status.append(False)
durations.append(5)

Expand Down

0 comments on commit f3166fb

Please sign in to comment.