Skip to content

Commit 63b99e5

Browse files
min-gukmboehm7
authored andcommitted
[SYSTEMDS-3729] Fix federate response of roll function
This patch removes unnecessary data transfer and data sharing, which was there for debugging only. Closes #2131.
1 parent 55075f8 commit 63b99e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ public FederatedResponse execute(ExecutionContext ec, Data... data) {
429429
resBlock = oriBlock;
430430
}
431431
ec.setMatrixOutput(String.valueOf(_outputID), resBlock);
432-
return new FederatedResponse(FederatedResponse.ResponseType.SUCCESS, resBlock);
432+
return new FederatedResponse(FederatedResponse.ResponseType.SUCCESS);
433433
}
434434

435435
@Override

0 commit comments

Comments
 (0)