Skip to content

Commit

Permalink
Merge pull request wildfly#656 from jbaesner/EJBCLIENT-527
Browse files Browse the repository at this point in the history
EJBCLIENT-527 Wrong SystemPropery name MAX_ENTRIES
  • Loading branch information
tadamski authored and jbaesner committed Aug 29, 2023
1 parent f7f6f79 commit f66c5fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ final class EJBInvocationHandler<T> extends Attachable implements InvocationHand

private static final Supplier<Discovery> DISCOVERY_SUPPLIER = doPrivileged((PrivilegedAction<Supplier<Discovery>>) Discovery.getContextManager()::getPrivilegedSupplier);

private static final int MAX_RETRIES = SecurityUtils.getInteger(SystemProperties.MAX_ENTRIES, 8);
private static final int MAX_RETRIES = SecurityUtils.getInteger(SystemProperties.MAX_RETRIES, 8);

private final transient boolean async;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jboss/ejb/client/SystemProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class SystemProperties {
static final String DISCOVERY_BLOCKLIST_TIMEOUT = "org.jboss.ejb.client.discovery.blacklist.timeout";
static final String DISCOVERY_TIMEOUT = "org.jboss.ejb.client.discovery.timeout";
static final String JBOSS_NODE_NAME = "jboss.node.name";
static final String MAX_ENTRIES = "org.jboss.ejb.client.max-retries";
static final String MAX_RETRIES = "org.jboss.ejb.client.max-retries";
static final String VIEW_ANNOTATION_SCAN_ENABLED = "org.jboss.ejb.client.view.annotation.scan.enabled";
static final String WILDFLY_TESTSUITE_HACK = "org.jboss.ejb.client.wildfly-testsuite-hack";

Expand Down

0 comments on commit f66c5fc

Please sign in to comment.