Skip to content

Commit

Permalink
Merge pull request Netflix#861 from hieurl/master
Browse files Browse the repository at this point in the history
- fix minor typo in PropertyBasedClientConfigConstants.java
  • Loading branch information
qiangdavidliu authored Oct 20, 2016
2 parents 9909951 + 1f619be commit 90e57c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public int getInstanceInfoReplicationIntervalSeconds() {
}

public int getInitialInstanceInfoReplicationIntervalSeconds() {
return prefixedConfig.getInteger(INITIAL_REGISTRATION_REPLCIATION_DELAY_KEY, 40);
return prefixedConfig.getInteger(INITIAL_REGISTRATION_REPLICATION_DELAY_KEY, 40);
}

public int getEurekaServiceUrlPollIntervalSeconds() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public int getInstanceInfoReplicationIntervalSeconds() {
@Override
public int getInitialInstanceInfoReplicationIntervalSeconds() {
return configInstance.getIntProperty(
namespace + INITIAL_REGISTRATION_REPLCIATION_DELAY_KEY, 40).get();
namespace + INITIAL_REGISTRATION_REPLICATION_DELAY_KEY, 40).get();
}

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class PropertyBasedClientConfigConstants {

static final String REGISTRY_REFRESH_INTERVAL_KEY = "client.refresh.interval";
static final String REGISTRATION_REPLICATION_INTERVAL_KEY = "appinfo.replicate.interval";
static final String INITIAL_REGISTRATION_REPLCIATION_DELAY_KEY = "appinfo.initial.replicate.time";
static final String INITIAL_REGISTRATION_REPLICATION_DELAY_KEY = "appinfo.initial.replicate.time";
static final String HEARTBEAT_THREADPOOL_SIZE_KEY = "client.heartbeat.threadPoolSize";
static final String HEARTBEAT_BACKOFF_BOUND_KEY = "client.heartbeat.exponentialBackOffBound";
static final String CACHEREFRESH_THREADPOOL_SIZE_KEY = "client.cacheRefresh.threadPoolSize";
Expand Down

0 comments on commit 90e57c2

Please sign in to comment.