Skip to content

Commit

Permalink
increase the upper limit of the server invocation threshold in tests
Browse files Browse the repository at this point in the history
Increase the upper limit of the server invocation threshold in tests because http get also uses HttpTransportClient.connect() method, thereby increasing the number of server invocations significantly during a test run.
  • Loading branch information
ashitsalesforce committed Sep 25, 2024
1 parent c3cc06d commit d70b1e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
public abstract class ProcessTestBase extends ConfigTestBase {

private static Logger logger = LogManager.getLogger(ProcessTestBase.class);
private int serverApiInvocationThreshold = 100;
private int serverApiInvocationThreshold = 150;

protected ProcessTestBase() {
super(Collections.<String, String>emptyMap());
Expand Down

0 comments on commit d70b1e2

Please sign in to comment.