Comment 2 for bug 1803677

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to mistral (master)

Reviewed: https://review.openstack.org/618483
Committed: https://git.openstack.org/cgit/openstack/mistral/commit/?id=c9e08a883946540bf245dd372406642e3aa50808
Submitter: Zuul
Branch: master

commit c9e08a883946540bf245dd372406642e3aa50808
Author: Renat Akhmerov <email address hidden>
Date: Fri Nov 16 15:15:45 2018 +0700

    Fix "join" when the last indirect inbound task failed

    * See bug description for the example that didn't work. It was
      caused by a simple mistake in a python expression of type
      "my_set = my_set or set()" that didn't work as expected, i.e.
      it created a new set even if my_set is already an empty set.
      So, the proper expression that's needed is
      "my_set = set() if my_set is None else my_set"

    Change-Id: I2a787921449fecf3301013a770ffe712e9606baf
    Closes-Bug: #1803677