Merge "Use PortOpt for KMIP port"

This commit is contained in:
Jenkins 2017-09-14 08:01:37 +00:00 committed by Gerrit Code Review
commit 4b91cf1a77
1 changed files with 4 additions and 4 deletions

View File

@ -56,10 +56,10 @@ kmip_opts = [
default='localhost',
help=u._('Address of the KMIP server')
),
cfg.IntOpt('port',
default=5696,
help=u._('Port for the KMIP server'),
),
cfg.PortOpt('port',
default=5696,
help=u._('Port for the KMIP server'),
),
cfg.StrOpt('ssl_version',
default='PROTOCOL_TLSv1_2',
help=u._('SSL version, maps to the module ssl\'s constants'),