You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 'Confirm Change' decision of the "Rubrik - Assaign SLA Domain" workflow is not using the 'returnedSLADomainName' in it's value check, instead checking if "the inputted value == the inputted value":
if (slaDomainName == slaDomainName){true;}else{false;}
This should be using the other variable inputted to the decision in the check:
if (slaDomainName == returnedSLADomaiName){true;}else{false;}