There is a trigger set to run pipelines at 5 AM.
Pipeline name: 5_AM_Trigger
Pipelines running on trigger: Pipeline_A, Pipeline_B
I was working on Pipeline_C and another developer is working on Pipeline_D. We ended up deploying to same trigger around same time.
Deployment made to trigger by me:
Before deployment:
Pipelines on trigger: Pipeline_A, Pipeline_B
After deployment:
Pipelines on trigger: Pipeline_A, Pipeline_B, Pipeline_C
Deployment made to trigger by another Developer(few minutes after my deployment):
Before deployment:
Pipelines on trigger: Pipeline_A, Pipeline_B
After deployment:
Pipelines on trigger: Pipeline_A, Pipeline_B, Pipeline_D
The reason I got to know that why Pipeline_C did not appear in the trigger because another developer did not do a browser refresh after my deployment and ended up adding his Pipeline to Previous trigger configurations(2 pipelines) overwriting trigger with new configurations(3 pipelines).
Is this a valid reason? If yes Is there a solution for this issue?
Expected pipelines on trigger after both deployments: Pipeline_A, Pipeline_B, Pipeline_C, Pipeline_D
Actual pipelines on trigger after both deployments: Pipeline_A, Pipeline_B, Pipeline_D