Tickets will not open

Issue #431 resolved
Leland Lowe created an issue

When a ticket goes into a certain status the the ticket will no longer open. The status we have is called Peer Review. But once we disable the Workflow addon the ticket is able to be open

Comments (10)

  1. Fidel Castro Armario repo owner

    Hi Lowe,

    I need the following information in order to find out what is happening:

    1. Has the problem appeared after updating JIRA Workflow Toolbox? Which version did you have installed before updating?
    2. Please, explain in detail what you mean by "...no longer open.". Do you get a timeout of the browser? Is an error message shown?
    3. Please attach an XML export of the workflow.
    4. Tell me the name of the status where the problem occurs.
    5. Can you send me the log file of your server? You can send it to support@workflowarts.com.
  2. Leland Lowe reporter
    1. I am not sure what version we had before. But we updated all addons and still had this issue
    2. The tickets just sit at the loading screen. Then Jira will state, the issue can't be displayed right now
    3. Peer Review
  3. Leland Lowe reporter

    Looks like it is related to the conditions on Peer Review. Once I removed those the ticket opens quickly. Were they added incorrectly?

  4. Fidel Castro Armario repo owner

    Can you please run the following 2 JQL queries in your JIRA instance, and tell me how many issues return each of them?

    1)

    labels != UX OR labels is EMPTY
    

    2)

    labels = UX 
    
  5. Leland Lowe reporter

    Here you go

    1) 291933 for all tickets. I ran project = key and labels is EMPTY and that showed 8600

    2) 256

  6. Fidel Castro Armario repo owner

    Please, replace "Condition based on JQL query" with "Boolean condition with math, date-time or text-string terms" using the following boolean expressions:

    1) Transition "Ready for UX Grooming (481) " and "Ready for UX (451)" which now are using 'labels = UX' JQL query:

    %{00080} = "UX"
    

    or if you want to only check if whether it contains label "UX" among other labels:

    %{00080} ~ "UX"
    

    2) Transition "Ready to be QA'ed (211)" which now is using 'labels != UX OR labels is EMPTY' JQL query:

    %{00080} != "UX"
    

    or if you want to only check if whether it doesn't contain label "UX" among other labels:

    %{00080} !~ "UX"
    

    Note that %{00080} is field code for Labels.

  7. Fidel Castro Armario repo owner

    Hi Leland,

    The solution I gave you in my previous post should solve your problem, but I have made a modification in version 2.2.23_beta_1. Can you please install this version and tell me whether it solves your problem?

  8. Fidel Castro Armario repo owner

    Thanks for the testing. Now, I recommend you to apply in your production server the modifications I explained you in my former post, in case you don't want to install the beta version in your production server.

  9. Log in to comment