Fix comment for API binary name in WSGIService

The compute API binary service name is a constant source of
confusion, sometimes called nova-api or nova-os_compute, which are
both wrong, since it's actually nova-osapi_compute. It comes from
nova.cmd.api.

Change-Id: I50befc34730296d3908b6dd25536394608bae0ec
This commit is contained in:
Matt Riedemann 2017-07-05 11:32:22 -04:00
parent 635e29433c
commit 4ae65b386c
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class WSGIService(service.Service):
"""
self.name = name
# NOTE(danms): Name can be metadata, os_compute, or ec2, per
# NOTE(danms): Name can be metadata, osapi_compute, or ec2, per
# nova.service's enabled_apis
self.binary = 'nova-%s' % name
self.topic = None