Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-2, 1.0-beta-3
-
None
-
Linux (run from Continuum)
Description
Update fails because update command uses changelog command without setting logger on it - so
changelog command fails with NullPointerException at the beggining of execution in:
getLogger().debug( "executing changelog command..." );
The required change is in
ClearCaseUpdateCommand.java:
protected ChangeLogCommand getChangeLogCommand()
should be:
protected ChangeLogCommand getChangeLogCommand()
This change is done according to convention used in cvs,perforce,starteam providers when invoking one command from another.