Skip to content

Commit

Permalink
chore: fallback to true if getUseWorkloadApi null. (#13896)
Browse files Browse the repository at this point in the history
  • Loading branch information
tryangul committed Sep 10, 2024
1 parent 0c98541 commit 6b35241
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ private StandardSyncOutput reduceReplicationOutput(final ReplicationOutput outpu
boolean useWorkloadApi(final ReplicationActivityInput input) {
// TODO: remove this once active workloads finish
if (input.getUseWorkloadApi() == null) {
return false;
return true;
} else {
return input.getUseWorkloadApi();
}
Expand Down

0 comments on commit 6b35241

Please sign in to comment.