YARN-3568. TestAMRMTokens should use some random port. (Takashi Ohnishi via Subru).

(cherry picked from commit 79ae78dcbe)
This commit is contained in:
Subru Krishnan 2016-10-27 15:11:12 -07:00
parent f572448809
commit 4274600b95
1 changed files with 4 additions and 0 deletions

View File

@ -113,6 +113,8 @@ public class TestAMRMTokens {
DEFAULT_RM_AMRM_TOKEN_MASTER_KEY_ROLLING_INTERVAL_SECS);
conf.setLong(YarnConfiguration.RM_AM_EXPIRY_INTERVAL_MS,
YarnConfiguration.DEFAULT_RM_AM_EXPIRY_INTERVAL_MS);
conf.set(YarnConfiguration.RM_SCHEDULER_ADDRESS,
"0.0.0.0:0");
MyContainerManager containerManager = new MyContainerManager();
final MockRMWithAMS rm =
@ -230,6 +232,8 @@ public class TestAMRMTokens {
YarnConfiguration.RM_AMRM_TOKEN_MASTER_KEY_ROLLING_INTERVAL_SECS,
rolling_interval_sec);
conf.setLong(YarnConfiguration.RM_AM_EXPIRY_INTERVAL_MS, am_expire_ms);
conf.set(YarnConfiguration.RM_SCHEDULER_ADDRESS,
"0.0.0.0:0");
MyContainerManager containerManager = new MyContainerManager();
final MockRMWithAMS rm =
new MockRMWithAMS(conf, containerManager);