sb0 changed the topic of #m-labs to: ARTIQ, Migen, MiSoC, Mixxeo & other M-Labs projects :: fka #milkymist :: Logs http://irclog.whitequark.org/m-labs
fengling has quit [Ping timeout: 272 seconds]
fengling has joined #m-labs
fengling has quit [Ping timeout: 272 seconds]
fengling has joined #m-labs
fengling has quit [Ping timeout: 272 seconds]
fengling has joined #m-labs
evilspirit has joined #m-labs
fengling has quit [Quit: WeeChat 1.2]
robtaylor has quit [Ping timeout: 246 seconds]
robtaylor has joined #m-labs
robtaylor has quit [Ping timeout: 246 seconds]
robtaylor has joined #m-labs
robtaylor has quit [Ping timeout: 249 seconds]
robtaylor has joined #m-labs
robtaylor has quit [Ping timeout: 246 seconds]
robtaylor has joined #m-labs
evilspirit has quit []
robtaylor has quit [*.net *.split]
robtaylor has joined #m-labs
evilspirit has joined #m-labs
cr1901_modern has quit [Read error: Connection reset by peer]
cr1901_modern has joined #m-labs
evilspirit has quit [Ping timeout: 240 seconds]
stekern has joined #m-labs
robtaylor has quit [*.net *.split]
robtaylor has joined #m-labs
robtaylor has quit [Ping timeout: 246 seconds]
robtaylor has joined #m-labs
<sb0> mithro, "please sign in to view this video"
Mon_ has joined #m-labs
evilspirit has joined #m-labs
rohitksingh has joined #m-labs
mazzoo_ has joined #m-labs
rohitksingh has quit [Ping timeout: 250 seconds]
evilspirit has quit [Ping timeout: 245 seconds]
mazzoo_ has quit [Ping timeout: 245 seconds]
mazzoo_ has joined #m-labs
rohitksingh has joined #m-labs
FabM has quit [Quit: ChatZilla 0.9.92 [Firefox 43.0.4/20160105164030]]
mazzoo_ has quit [Ping timeout: 264 seconds]
evilspirit has joined #m-labs
mazzoo_ has joined #m-labs
evilspirit has quit [Ping timeout: 245 seconds]
<GitHub86> [artiq] sbourdeauducq pushed 3 new commits to master: https://git.io/vgIvg
<GitHub86> artiq/master 55b3124 Sebastien Bourdeauducq: remove stale dependency on pyelftools
<GitHub86> artiq/master c639860 Sebastien Bourdeauducq: setup.py: remove stale import
<GitHub86> artiq/master b7de92e Sebastien Bourdeauducq: remove pxi6733 support (now lives at https://github.com/m-labs/aq_ni6733
rohitksingh has quit [Quit: Leaving.]
ysionnea1 has joined #m-labs
attie_ has joined #m-labs
<sb0> rjo, maybe you specified "--bind ::1" even though it was already bound to localhost?
<sb0> this is somewhat annoying to resolve as there can be name aliases to localhost, and the name resolving happens inside python
<rjo> probably. it was "host": "::1"
<sb0> yes, i can reproduce the problem with your ctlmgr unittest if i remove --no-bind-localhost
<sb0> fixing that in python should be a 1-line patch, hopefully that can get merged fast... mh
<GitHub153> [artiq] sbourdeauducq created newtesting (+3 new commits): https://git.io/vgI9u
<GitHub153> artiq/newtesting ca8a075 Sebastien Bourdeauducq: test/ctlmgr: use sys.executable, use default localhost binding
<GitHub153> artiq/newtesting 9ca8b48 Sebastien Bourdeauducq: assume 'import artiq' works before running tests
<GitHub153> artiq/newtesting 89f68f3 Sebastien Bourdeauducq: style
<rjo> sb0: ack.
<rjo> sb0: can i expose socket.settimeout in Client? AsyncClient and constantly having to run the loop seems a bit of overkill just to get timeouts (currently in the hardware_testbench).
<sb0> rjo, you want RPC calls that time out, right?
<rjo> specifically terminate() in the controller shutdown code path of the unittest
<rjo> well it's not "constantly having to run it" but i would need to use AsyncClient and pull in asyncio just for that.
<sb0> ok, adding timeout to Client sounds fine
<sb0> just beware of bugs... does BestEffortClient use any of the Client code? i don't remember
<rjo> constructor argument or method?
<rjo> they are separate
<sb0> constructor argument, unless it gets crowded there
<rjo> ack
<rjo> it would probably be nasty if some experiment code does socket.setdefaulttimeout(0).
<GitHub108> [artiq] jordens force-pushed subprocess-termination from 34403b4 to f7df393: https://git.io/vgLqg
<GitHub108> artiq/subprocess-termination 5500611 Robert Jordens: subprocesses: unify termination logic
<GitHub108> artiq/subprocess-termination c105949 Robert Jordens: pc_rpc.Client: support socket timeouts...
<GitHub108> artiq/subprocess-termination 7636952 Robert Jordens: ctlmgr: fix import
<GitHub129> [artiq] jordens pushed 1 new commit to subprocess-termination: https://git.io/vgLY7
<GitHub129> artiq/subprocess-termination c28b938 Robert Jordens: Client: add note about timeout sideeffects