Skip to content

Commit

Permalink
[BACKLOG-15691] Fix replay error file name calculation (pentaho#3735)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBuloichik authored and Ben Morrise committed Apr 19, 2017
1 parent b25581e commit 2e5f5ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2013 by Pentaho : http://www.pentaho.com
* Copyright (C) 2002-2017 by Pentaho : http://www.pentaho.com
*
*******************************************************************************
*
Expand Down Expand Up @@ -99,7 +99,7 @@ private void initializeCurrent( FileObject file, String filePart ) throws Kettle

FileObject errorFile =
AbstractFileErrorHandler.getReplayFilename(
errorDirectory, file.getName().getURI(), replayDate, errorExtension,
errorDirectory, file.getName().getBaseName(), replayDate, errorExtension,
AbstractFileErrorHandler.NO_PARTS );
if ( errorFile.exists() ) {
currentErrorFile = new FilePlayListReplayErrorFile( errorFile, file );
Expand Down

0 comments on commit 2e5f5ff

Please sign in to comment.