| Issue 2969: | Type conflict in nova/nova/scheduler/filters/trusted_filter.py using attestation_port default value | |
| 1 person starred this issue and may be notified of changes. | Back to list |
When trusted filter in nova scheduler is running with default value of attestation_port:
cfg.StrOpt('attestation_port', default='8443', help='Attestation server port'),
method _do_request() in AttestationService class has this line:
action_url = "https://%s:%d%s/%s % (self.host, self.port, self.api_url, action_url)
It is easy to see that default type of attestation_port is string.
But in action_url self.port is required as integer (%d). It leads to conflict.
Oct 15, 2014
Project Member
#1
edwin.ke...@gmail.com
Status:
Invalid
|
|
| ► Sign in to add a comment |