code review comments
This commit is contained in:
parent
1280367593
commit
1f66d87b2f
|
@ -139,7 +139,7 @@ public class ReductionStepExecutor {
|
||||||
|
|
||||||
ChunkOutcome outcome = theReductionStepWorker.consume(chunkDetails);
|
ChunkOutcome outcome = theReductionStepWorker.consume(chunkDetails);
|
||||||
|
|
||||||
switch (outcome.getStatuss()) {
|
switch (outcome.getStatus()) {
|
||||||
case SUCCESS:
|
case SUCCESS:
|
||||||
theResponseObject.addSuccessfulChunkId(theChunk);
|
theResponseObject.addSuccessfulChunkId(theChunk);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class ChunkOutcome {
|
||||||
myStatus = theStatus;
|
myStatus = theStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Status getStatuss() {
|
public Status getStatus() {
|
||||||
return myStatus;
|
return myStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue