[JIRA] (JENKINS-39467) Project Inheritance Plugin is not compatible with Rebuild Plugin 1.23+

617 views
Skip to first unread message

o.v.nenashev@gmail.com (JIRA)

unread,
Nov 3, 2016, 2:08:01 AM11/3/16
to jenkinsc...@googlegroups.com
Oleg Nenashev updated an issue
 
Jenkins / Bug JENKINS-39467
Project Inheritance Plugin is not compatible with Rebuild Plugin 1.23+
Change By: Oleg Nenashev
Issue Type: New Feature Bug
Add Comment Add Comment
 
This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)
Atlassian logo

o.v.nenashev@gmail.com (JIRA)

unread,
Nov 3, 2016, 2:08:02 AM11/3/16
to jenkinsc...@googlegroups.com
Oleg Nenashev created an issue
 
Jenkins / New Feature JENKINS-39467
Issue Type: New Feature New Feature
Assignee: Unassigned
Components: project-inheritance-plugin
Created: 2016/Nov/03 6:07 AM
Priority: Critical Critical
Reporter: Oleg Nenashev

The issue causes failures in all rebuild validation logic calls.

2016-11-02 08:30:16.942+0000 [id=3232814]   WARNING h.model.listeners.RunListener#report: RunListener failed
java.lang.AbstractMethodError: com.sonyericsson.rebuild.RebuildValidator.isApplicable(Lhudson/model/AbstractBuild;)Z
    at com.sonyericsson.rebuild.Rebuilder.onCompleted(Rebuilder.java:56)
    at hudson.model.listeners.RunListener.fireCompleted(RunListener.java:201)
    at hudson.model.Run.execute(Run.java:1783)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:98)
    at hudson.model.Executor.run(Executor.java:410)

CC @rsandell

myoung@terrapower.com (JIRA)

unread,
Nov 19, 2018, 5:01:02 PM11/19/18
to jenkinsc...@googlegroups.com
Mitchell Young commented on Bug JENKINS-39467
 
Re: Project Inheritance Plugin is not compatible with Rebuild Plugin 1.23+

Looking at the current state of these two plugins, they appear to be compatible now (disclaimer: I'm not super familiar with Java). They both lack the `abstract` keyword, at least. However, I am still getting a similar exception regarding the `isApplicable()` method. Could this be related to: https://issues.jenkins-ci.org/browse/JENKINS-50244?

This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)

myoung@terrapower.com (JIRA)

unread,
Nov 19, 2018, 5:11:02 PM11/19/18
to jenkinsc...@googlegroups.com

Apologies; I missed the two `isApplicable()` methods that are defined by the Rebuild plugin

myoung@terrapower.com (JIRA)

unread,
Nov 19, 2018, 5:11:02 PM11/19/18
to jenkinsc...@googlegroups.com
Mitchell Young edited a comment on Bug JENKINS-39467
Apologies; I missed the two `isApplicable()` methods that are defined by the Rebuild plugin . It does appear that the project inheritance plugin is incompatible

christian.haeussler@huk-coburg.de (JIRA)

unread,
Apr 5, 2019, 9:09:03 AM4/5/19
to jenkinsc...@googlegroups.com

We have the same error:

java.lang.AbstractMethodError: you must override the new overload of isApplicable in hudson.plugins.project_inheritance.projects.rebuild.RebuildValidatorSuppressor
at com.sonyericsson.rebuild.RebuildValidator.isApplicable(RebuildValidator.java:50)

vs-odessa@yandex.ru (JIRA)

unread,
Jul 15, 2019, 9:34:02 AM7/15/19
to jenkinsc...@googlegroups.com

srinikitha.19@gmail.com (JIRA)

unread,
Feb 26, 2020, 4:27:07 AM2/26/20
to jenkinsc...@googlegroups.com
I am also getting the following warning, when running with declarative pipeline:
{code:java}
WARNING h.model.listeners.RunListener#report: RunListener failed

java.lang.AbstractMethodError: you must override the new overload of isApplicable in hudson.plugins.project_inheritance.projects.rebuild.RebuildValidatorSuppressor
at com.sonyericsson.rebuild.RebuildValidator.isApplicable(RebuildValidator.java:50)
at com.sonyericsson.rebuild.Rebuilder.onCompleted(Rebuilder.java:53)
at hudson.model.listeners.RunListener.fireCompleted(RunListener.java:209)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.finish(WorkflowRun.java:587)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.access$800(WorkflowRun.java:133)
at org.jenkinsci.plugins.workflow.job.WorkflowRun$GraphL.onNewHead(WorkflowRun.java:999)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.notifyListeners(CpsFlowExecution.java:1463)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$3.run(CpsThreadGroup.java:458)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$1.run(CpsVmExecutorService.java:37)
at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:59)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
{code}
Is there any workaround to get rid of this warning all the time?  
This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)
Atlassian logo

srinikitha.19@gmail.com (JIRA)

unread,
Feb 26, 2020, 4:27:07 AM2/26/20
to jenkinsc...@googlegroups.com

I am also getting the following warning, when running with declarative pipeline:

WARNING h.model.listeners.RunListener#report: RunListener failed
java.lang.AbstractMethodError: you must override the new overload of isApplicable in hudson.plugins.project_inheritance.projects.rebuild.RebuildValidatorSuppressor
 at com.sonyericsson.rebuild.RebuildValidator.isApplicable(RebuildValidator.java:50)
 at com.sonyericsson.rebuild.Rebuilder.onCompleted(Rebuilder.java:53)
 at hudson.model.listeners.RunListener.fireCompleted(RunListener.java:209)
 at org.jenkinsci.plugins.workflow.job.WorkflowRun.finish(WorkflowRun.java:587)
 at org.jenkinsci.plugins.workflow.job.WorkflowRun.access$800(WorkflowRun.java:133)
 at org.jenkinsci.plugins.workflow.job.WorkflowRun$GraphL.onNewHead(WorkflowRun.java:999)
 at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.notifyListeners(CpsFlowExecution.java:1463)
 at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$3.run(CpsThreadGroup.java:458)
 at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$1.run(CpsVmExecutorService.java:37)
 at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:131)
 at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
 at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:59)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
 at java.lang.Thread.run(Thread.java:748)

Is there any workaround to get rid of this warning all the time?

srinikitha.19@gmail.com (JIRA)

unread,
Feb 26, 2020, 4:27:08 AM2/26/20
to jenkinsc...@googlegroups.com
I am also getting the following warning, when running with declarative pipeline:
{code:java}

WARNING h.model.listeners.RunListener#report: RunListener failed
java.lang.AbstractMethodError: you must override the new overload of isApplicable in hudson.plugins.project_inheritance.projects.rebuild.RebuildValidatorSuppressor
at com.sonyericsson.rebuild.RebuildValidator.isApplicable(RebuildValidator.java:50)
at com.sonyericsson.rebuild.Rebuilder.onCompleted(Rebuilder.java:53)
at hudson.model.listeners.RunListener.fireCompleted(RunListener.java:209)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.finish(WorkflowRun.java:587)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.access$800(WorkflowRun.java:133)
at org.jenkinsci.plugins.workflow.job.WorkflowRun$GraphL.onNewHead(WorkflowRun.java:999)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.notifyListeners(CpsFlowExecution.java:1463)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$3.run(CpsThreadGroup.java:458)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$1.run(CpsVmExecutorService.java:37)
at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:59)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
{code}

Is there any workaround to get rid of this warning all the time?
 
Reply all
Reply to author
Forward
0 new messages