Skip to content

Commit

Permalink
Release v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
genotrance committed Mar 2, 2024
1 parent a3872b5 commit 7eebce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.9.1 - TBD
v0.9.1 - 2024-03-02
- Fixed issue with logging not working when set from px.ini - #204
- Fixed issue with environment variables not propagating to all processes in Linux
- Documented how to install binary version of Px on Windows without running in a
Expand Down
4 changes: 3 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ def socketTestSetup():
localips = getips()
localips.insert(0, "")
localips.remove("127.0.0.1")
for ip in localips[:3]:
for ip in localips:
if ip.startswith("172.1"):
continue
cmd = ""
if ip != "":
cmd = "--listen=" + ip
Expand Down

0 comments on commit 7eebce7

Please sign in to comment.