File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ def start_containers(containers):
224224 "docker rm -f %(name)s || true" % container ,
225225 "docker run "
226226 "--rm "
227+ "--cpuset-cpus 0,1 "
227228 "--detach "
228229 "--privileged "
229230 "--cap-add=SYS_PTRACE "
Original file line number Diff line number Diff line change @@ -165,6 +165,18 @@ Core Library
165165 buffer management when logging lines received from a child's redirected
166166 standard IO.
167167
168+ * `49a6446a <https://github.com/dw/mitogen/commit/49a6446a >`_: the
169+ :meth: `empty ` method of :class: `mitogen.core.Latch `,
170+ :class: `mitogen.core.Receiver ` and :class: `mitogen.select.Select ` has been
171+ replaced by a more general :meth: `size ` method. :meth: `empty ` will be removed
172+ in Mitogen 0.3
173+
174+ * `ecc570cb <https://github.com/dw/mitogen/commit/ecc570cb >`_: previously
175+ :meth: `mitogen.select.Select.add ` would enqueue a single wake event when
176+ adding an existing receiver, latch or subselect that contained multiple
177+ buffered items, causing future :meth: `get ` calls to block or fail even though
178+ data existed that could be returned.
179+
168180
169181Thanks!
170182~~~~~~~
You can’t perform that action at this time.
0 commit comments