Comment 3 for bug 1803677

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

Reviewed: https://review.openstack.org/618489
Committed: https://git.openstack.org/cgit/openstack/mistral/commit/?id=30822d577cb57f5acdfc9cfe94243d070d6038ad
Submitter: Zuul
Branch: stable/rocky

commit 30822d577cb57f5acdfc9cfe94243d070d6038ad
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