Takashi Kajinami b410da1154 Drop unicode prefix
In Python 3 all strings are unicode, so the prefix has no effect. Drop
it to make all string value definition consistent.

Change-Id: I8eeb30b7bba8346dbaaf4f387f831a8733f4ad80
2024-11-05 01:11:21 +00:00

40 lines
1.2 KiB
Python

# Copyright (c) 2014 Rackspace, Inc.
# Copyright 2014 Catalyst IT Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
from oslo_log import log as logging
from zaqar.i18n import _
from zaqar.transport import utils
from zaqar.transport.wsgi import errors as wsgi_errors
LOG = logging.getLogger(__name__)
class Resource(object):
__slots__ = ('_driver',)
def __init__(self, driver):
self._driver = driver
def on_get(self, req, resp, **kwargs):
try:
resp_dict = self._driver.health()
resp.text = utils.to_json(resp_dict)
except Exception:
description = _('Health status could not be read.')
LOG.exception(description)
raise wsgi_errors.HTTPServiceUnavailable(description)