Skip to content

Commit

Permalink
add getters in ZookeeperAnnouncer (#1025)
Browse files Browse the repository at this point in the history
  • Loading branch information
bohhyang authored Oct 3, 2024
1 parent 0f27f70 commit 53aec30
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,16 @@ public Map<String, Object> getUriSpecificProperties()
return (_uriSpecificProperties == null) ? Collections.<String, Object>emptyMap() : _uriSpecificProperties;
}

public boolean isDarkWarmupEnabled()
{
return _isDarkWarmupEnabled;
}

public String getDarkWarmupClusterName()
{
return _warmupClusterName;
}

/**
* This is not the cleanest way of setting weight or partition data. However,
* this simplifies object create by presenting only one method and by forcing
Expand Down

0 comments on commit 53aec30

Please sign in to comment.