Closed
Description
Repro using sample HelloActivity:
public String getGreeting(String name) {
int version = Workflow.getVersion("cid1", Workflow.DEFAULT_VERSION, 1);
System.out.println(version);
return activities.composeGreeting("Hello", name);
}
Start a run and see version is 1.
Then save the history and change the workflow to:
public String getGreeting(String name) {
int versionNew = Workflow.getVersion("cid2", Workflow.DEFAULT_VERSION, 1);
System.out.println(versionNew);
int version = Workflow.getVersion("cid1", Workflow.DEFAULT_VERSION, 1);
System.out.println(version);
return activities.composeGreeting("Hello", name);
}
Run the HelloActivityReplayTest, the output is -1 -1, while the expected result should be -1, 1.