When I make changes to my domain.yml it puts everything into alphabetical order. However, since my forms are in there as well, the slots are asked in a different order (alphabetical one) then how I set them.
async def required_slots(
self,
slots_mapped_in_domain: List[Text],
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> Optional[List[Text]]:
""" Set order of slots """
return ['z_slot', 'a_slot']
When I deploy using Kubernetes with Helm Charts & Github Actions this does not seem te be working but when I run it locally it does work. At first my a_slot gets asked instead of my z_slot. I also checked the code on Github and it is the same as when I run it locally. Do you have any idea why this is happening?