1. 24 Mar, 2018 13 commits
  2. 23 Mar, 2018 7 commits
  3. 22 Mar, 2018 4 commits
    • David Wilson's avatar
      2d7821b8
    • David Wilson's avatar
      issue #155: fix call_function_test regression · 08612d4c
      David Wilson authored
      It's entirely unclear how test_aborted_on_local_context_disconnect ever
      passed, but it was broken by the previous commit.
      08612d4c
    • David Wilson's avatar
      issue #155: add DEL_ROUTE, propagate ADD_ROUTE upwards · 54ff1c90
      David Wilson authored
      * IDs are allocated by the parent responsible for contructing a new
        child, using ALLOCATE_ID to the master as necessary to allocate new ID
        ranges.
      
      * ADD_ROUTE is sent up the tree rather than down. This permits
        construction of the new context to complete concurrent to parent
        contexts learning about its existence. Since all streams are strictly
        ordered, it's not possible for any parent to observe messages from the
        new context prior to arrival of an ADD_ROUTE from the parent notifying
        of its existence.
      
        If the new context, for example, implements an Ansible async task, its
        parent can start executing that without waiting for any synchronous
        confirmation from any parent or the master.
      
      * Since routes propagate up, it's no longer possible for a plain
        non-parent child to ever receive ADD_ROUTE, so that code can be moved
        out of core.py and into parent.py (-0.2kb compressed).
      
      * Add a .routes attribute to parent.Stream, and respond to disconnection
        signal on the stream by propagating DEL_ROUTE for any ADD_ROUTE ever
        received from that stream.
      
      * Centralize route management in a new parent.RouteMonitor class
      54ff1c90
    • David Wilson's avatar
      docs: farewell, glorious iframe! · aeeeb45c
      David Wilson authored
      aeeeb45c
  4. 21 Mar, 2018 8 commits
  5. 20 Mar, 2018 8 commits