Skip to content

Commit

Permalink
Merge pull request #1501 from daniel-beck/JENKINS-26208
Browse files Browse the repository at this point in the history
[FIXED JENKINS-26208] Do not skip polling while quieting down
  • Loading branch information
daniel-beck committed Apr 4, 2015
2 parents c294ed8 + e7e1bf8 commit 5e89397
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core/src/main/java/hudson/triggers/SCMTrigger.java
Expand Up @@ -128,11 +128,6 @@ public void run() {
* @since 1.375
*/
public void run(Action[] additionalActions) {
if (Jenkins.getInstance().isQuietingDown()) {
LOGGER.log(INFO, "Skipping polling for {0} since Jenkins is in quiet mode", job.getFullName());
return;
}

DescriptorImpl d = getDescriptor();

LOGGER.fine("Scheduling a polling for "+job);
Expand Down

0 comments on commit 5e89397

Please sign in to comment.