bts-trx: Drop deprecated -t parameter

Parameter was dropped a while ago in osmo-bts, since it's calculated
dynamically from VTY config. So let's drop it to avoid a deprecation
warning message in osmo-bts log file.

Change-Id: Ia17a2528e091d4691c511732ed251e472d1270eb
This commit is contained in:
Pau Espin 2019-08-05 18:19:45 +02:00
parent 91199a3137
commit c93707ff6c
1 changed files with 1 additions and 2 deletions

View File

@ -135,8 +135,7 @@ class OsmoBtsTrx(bts_osmo.OsmoBtsMainUnit):
self.proc_bts = self.launch_process(keepalive, OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
'-c', os.path.abspath(self.config_file),
'-i', self.bsc.addr(),
'-t', str(self.num_trx()))
'-i', self.bsc.addr())
self.suite_run.poll()
class OsmoTrx(log.Origin, metaclass=ABCMeta):