diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2017-05-22 20:04:05 +0200 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-05-29 00:18:43 +0200 |
commit | 4f59ba6e68f94c230e8e80bcdc29c03f22607a09 (patch) | |
tree | 465e3ff9c535ee2c7454c2e478278de84fcb6af4 /src/osmo_gsm_tester/osmo_nitb.py | |
parent | c4ba4a6866a13e925bfc023f1fe3c5f5d5603601 (diff) |
config: nitb template: move ip_address to nitb.ip_address
It's the NITB's address, so it should go in the nitb.* scope.
Change-Id: I71a5ef153b7156b0644253f5aa8a0c848f42ab3b
Diffstat (limited to 'src/osmo_gsm_tester/osmo_nitb.py')
-rw-r--r-- | src/osmo_gsm_tester/osmo_nitb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo_gsm_tester/osmo_nitb.py b/src/osmo_gsm_tester/osmo_nitb.py index 926c111..1bb1fcf 100644 --- a/src/osmo_gsm_tester/osmo_nitb.py +++ b/src/osmo_gsm_tester/osmo_nitb.py @@ -70,7 +70,7 @@ class OsmoNitb(log.Origin): values = dict(nitb=config.get_defaults('nitb')) config.overlay(values, self.suite_run.config()) - config.overlay(values, dict(ip_address=self.ip_address)) + config.overlay(values, dict(nitb=dict(ip_address=self.ip_address))) bts_list = [] for bts in self.bts: |