Skip to content

Commit 2b2bae9

Browse files
authored
Merge pull request #1493 from drenout/development
Fixed the license installation issue
2 parents 840d9a5 + a1cd225 commit 2b2bae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

f5/bigip/tm/sys/license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ def __init__(self, sys):
4646
def exec_cmd(self, command, **kwargs):
4747
self._is_allowed_command(command)
4848
self._check_command_parameters(**kwargs)
49-
if LooseVersion(self._meta_data['bigip']._meta_data['tmos_version']) < LooseVersion('13.1.0'):
49+
if LooseVersion(self._meta_data['bigip']._meta_data['tmos_version']) < LooseVersion('13.1.0') and command == 'revoke':
5050
raise UnsupportedTmosVersion('%s is not supported until version 13.1' % command)
5151
return self._exec_cmd(command, **kwargs)

0 commit comments

Comments
 (0)