Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Build request is ignored as there is an identical request in queue. #4555

freecode82 ·

hi~ :grinning:

When a build request is sent to the rest API, it accumulates in the queue and the accumulated queue is converted into a build. In the case of some builds, if there is one waiting in the queue, the build request sent after that generates the following message and does not accumulate in the queue.


message: Build request is ignored as there is an identical request in queue.


In the case of other builds, even if more than one build request is piled up in the queue, additional build requests are also piled up in the queue.

Even if you examine the differences between these two builds, you cannot tell why one does not stack build requests when there is more than one waiting task in the queue, but the other does.


Can you tell me why?


Is there a way to continue building build requests in the queue without receiving the following message?

message: Build request is ignored as there is an identical request in queue.


Message received after sending build to rest api

<com.pmease.quickbuild.RequestResult>
false
Build request is ignored as there is an identical request in queue.
</com.pmease.quickbuild.RequestResult>


  • solved #2
  • replies 2
  • views 147
  • stars 0
robinshen ADMIN ·

QB ignores identical builds to save resources. Builds are considered to be identical if they belong to same configuration and runs against same set of variables. The workaround is simple: just pass in a variable with value set to current timestamp.

freecode82 ·

The problem was resolved well. thanks