Skip to content

Commit 3c97d15

Browse files
authored
Merge pull request #13 from escoem/JENKINS-38418
[FIXED JENKINS-38418] Failed to load persisted workflow state (remote-loader). Thanks @oleg-nenashev
2 parents dcb1eb5 + c9ce183 commit 3c97d15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/workflow/remoteloader/GroovyFileGlobalVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public abstract class GroovyFileGlobalVariable extends GlobalVariable {
4545
*/
4646
@Nonnull
4747
public String getClassName() {
48-
return getClass().getName() + ".Impl";
48+
return getClass().getName() + ".FileLoaderDSLImpl";
4949
}
5050

5151
@Override

src/main/resources/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/Impl.groovy renamed to src/main/resources/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
* THE SOFTWARE.
2323
*/
24-
package org.jenkinsci.plugins.workflow.remoteloader
24+
package org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL
2525

2626
import org.jenkinsci.plugins.workflow.cps.CpsScript;
2727

0 commit comments

Comments
 (0)