1
0
-1

I wanted to ask if there is any way to close the Exalate connection through code located in the azure incoming sync.

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hello,


      Yes you can, there is a helper method called unExalateAfterProcessing() which stops synchronization of an issue.


      Place this in the Incoming sync of destination side

      syncHelper.unExalateAfterProcessing()


      For example, you can use it to stop the issue synchronization if the issue status is closed.

      if (issue.status.name == "Closed") {
          syncHelper.unExalateAfterProcessing()
      }





        CommentAdd your comment...