diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-08 16:51:05 -0800 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2011-03-08 16:51:05 -0800 |
commit | 59fa70102a06dce9f86b9b29825245bc54c01598 (patch) | |
tree | 9bc062af214fd6e6b572cbb9c34508cde8d83abc /nova/service.py | |
parent | e8c8fd3f232371625f0924410c4c09c32339b113 (diff) | |
download | nova-59fa70102a06dce9f86b9b29825245bc54c01598.tar.gz nova-59fa70102a06dce9f86b9b29825245bc54c01598.tar.xz nova-59fa70102a06dce9f86b9b29825245bc54c01598.zip |
Added documentation about needed flags
Diffstat (limited to 'nova/service.py')
-rw-r--r-- | nova/service.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nova/service.py b/nova/service.py index 460f36f7a..af20db01c 100644 --- a/nova/service.py +++ b/nova/service.py @@ -221,7 +221,12 @@ class Service(object): class WsgiService(object): - """Base class for WSGI based services.""" + """Base class for WSGI based services. + + For each api you define, you must also define these flags: + :<api>_listen: The address on which to listen + :<api>_listen_port: The port on which to listen + """ def __init__(self, conf, apis): self.conf = conf |