Skip to content

Commit

Permalink
fixed bug batch size (#2567)
Browse files Browse the repository at this point in the history
  • Loading branch information
tigershi authored Aug 21, 2023
1 parent bf82ccc commit 330db18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public String getSyncListPath() {

public String getUserAgent() { return userAgent; }

public int getSyncBatchSize() { return syncBatchSize; }
public int getSyncBatchSize() { return (syncBatchSize - 1); }

public boolean isSyncBatchEnable() { return syncBatchEnable; }
}

0 comments on commit 330db18

Please sign in to comment.