Skip to content

Commit

Permalink
[SYSTEMDS-3729] Fix federate response of roll function
Browse files Browse the repository at this point in the history
This patch removes unnecessary data transfer and data sharing, which was there for debugging only.

Closes #2131.
  • Loading branch information
min-guk authored and mboehm7 committed Oct 24, 2024
1 parent 55075f8 commit 63b99e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ public FederatedResponse execute(ExecutionContext ec, Data... data) {
resBlock = oriBlock;
}
ec.setMatrixOutput(String.valueOf(_outputID), resBlock);
return new FederatedResponse(FederatedResponse.ResponseType.SUCCESS, resBlock);
return new FederatedResponse(FederatedResponse.ResponseType.SUCCESS);
}

@Override
Expand Down

0 comments on commit 63b99e5

Please sign in to comment.