Update latest OSLO
Includes fix for bug 1158179 Change-Id: Ifd8cde2903dcd013903e95a30c2ed422e89bcd0f
This commit is contained in:
parent
d21618019e
commit
6891a4d976
@ -207,7 +207,6 @@ def synchronized(name, lock_file_prefix, external=False, lock_path=None):
|
|||||||
local_lock_path = tempfile.mkdtemp()
|
local_lock_path = tempfile.mkdtemp()
|
||||||
|
|
||||||
if not os.path.exists(local_lock_path):
|
if not os.path.exists(local_lock_path):
|
||||||
cleanup_dir = True
|
|
||||||
fileutils.ensure_tree(local_lock_path)
|
fileutils.ensure_tree(local_lock_path)
|
||||||
|
|
||||||
# NOTE(mikal): the lock name cannot contain directory
|
# NOTE(mikal): the lock name cannot contain directory
|
||||||
|
@ -29,6 +29,7 @@ It also allows setting of formatting information through conf.
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import ConfigParser
|
||||||
import cStringIO
|
import cStringIO
|
||||||
import inspect
|
import inspect
|
||||||
import itertools
|
import itertools
|
||||||
@ -87,11 +88,11 @@ logging_cli_opts = [
|
|||||||
metavar='PATH',
|
metavar='PATH',
|
||||||
deprecated_name='logfile',
|
deprecated_name='logfile',
|
||||||
help='(Optional) Name of log file to output to. '
|
help='(Optional) Name of log file to output to. '
|
||||||
'If not set, logging will go to stdout.'),
|
'If no default is set, logging will go to stdout.'),
|
||||||
cfg.StrOpt('log-dir',
|
cfg.StrOpt('log-dir',
|
||||||
deprecated_name='logdir',
|
deprecated_name='logdir',
|
||||||
help='(Optional) The directory to keep log files in '
|
help='(Optional) The base directory used for relative '
|
||||||
'(will be prepended to --log-file)'),
|
'--log-file paths'),
|
||||||
cfg.BoolOpt('use-syslog',
|
cfg.BoolOpt('use-syslog',
|
||||||
default=False,
|
default=False,
|
||||||
help='Use syslog for logging.'),
|
help='Use syslog for logging.'),
|
||||||
@ -323,10 +324,30 @@ def _create_logging_excepthook(product_name):
|
|||||||
return logging_excepthook
|
return logging_excepthook
|
||||||
|
|
||||||
|
|
||||||
|
class LogConfigError(Exception):
|
||||||
|
|
||||||
|
message = _('Error loading logging config %(log_config)s: %(err_msg)s')
|
||||||
|
|
||||||
|
def __init__(self, log_config, err_msg):
|
||||||
|
self.log_config = log_config
|
||||||
|
self.err_msg = err_msg
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.message % dict(log_config=self.log_config,
|
||||||
|
err_msg=self.err_msg)
|
||||||
|
|
||||||
|
|
||||||
|
def _load_log_config(log_config):
|
||||||
|
try:
|
||||||
|
logging.config.fileConfig(log_config)
|
||||||
|
except ConfigParser.Error, exc:
|
||||||
|
raise LogConfigError(log_config, str(exc))
|
||||||
|
|
||||||
|
|
||||||
def setup(product_name):
|
def setup(product_name):
|
||||||
"""Setup logging."""
|
"""Setup logging."""
|
||||||
if CONF.log_config:
|
if CONF.log_config:
|
||||||
logging.config.fileConfig(CONF.log_config)
|
_load_log_config(CONF.log_config)
|
||||||
else:
|
else:
|
||||||
_setup_logging_from_conf()
|
_setup_logging_from_conf()
|
||||||
sys.excepthook = _create_logging_excepthook(product_name)
|
sys.excepthook = _create_logging_excepthook(product_name)
|
||||||
|
@ -495,7 +495,6 @@ class MulticallProxyWaiter(object):
|
|||||||
data = self._dataqueue.get(timeout=self._timeout)
|
data = self._dataqueue.get(timeout=self._timeout)
|
||||||
result = self._process_data(data)
|
result = self._process_data(data)
|
||||||
except queue.Empty:
|
except queue.Empty:
|
||||||
LOG.exception(_('Timed out waiting for RPC response.'))
|
|
||||||
self.done()
|
self.done()
|
||||||
raise rpc_common.Timeout()
|
raise rpc_common.Timeout()
|
||||||
except Exception:
|
except Exception:
|
||||||
@ -662,7 +661,7 @@ def notify(conf, context, topic, msg, connection_pool, envelope):
|
|||||||
pack_context(msg, context)
|
pack_context(msg, context)
|
||||||
with ConnectionContext(conf, connection_pool) as conn:
|
with ConnectionContext(conf, connection_pool) as conn:
|
||||||
if envelope:
|
if envelope:
|
||||||
msg = rpc_common.serialize_msg(msg, force_envelope=True)
|
msg = rpc_common.serialize_msg(msg)
|
||||||
conn.notify_send(topic, msg)
|
conn.notify_send(topic, msg)
|
||||||
|
|
||||||
|
|
||||||
|
@ -70,10 +70,6 @@ _VERSION_KEY = 'oslo.version'
|
|||||||
_MESSAGE_KEY = 'oslo.message'
|
_MESSAGE_KEY = 'oslo.message'
|
||||||
|
|
||||||
|
|
||||||
# TODO(russellb) Turn this on after Grizzly.
|
|
||||||
_SEND_RPC_ENVELOPE = False
|
|
||||||
|
|
||||||
|
|
||||||
class RPCException(Exception):
|
class RPCException(Exception):
|
||||||
message = _("An unknown RPC related exception occurred.")
|
message = _("An unknown RPC related exception occurred.")
|
||||||
|
|
||||||
@ -122,7 +118,25 @@ class Timeout(RPCException):
|
|||||||
This exception is raised if the rpc_response_timeout is reached while
|
This exception is raised if the rpc_response_timeout is reached while
|
||||||
waiting for a response from the remote side.
|
waiting for a response from the remote side.
|
||||||
"""
|
"""
|
||||||
message = _("Timeout while waiting on RPC response.")
|
message = _('Timeout while waiting on RPC response - '
|
||||||
|
'topic: "%(topic)s", RPC method: "%(method)s" '
|
||||||
|
'info: "%(info)s"')
|
||||||
|
|
||||||
|
def __init__(self, info=None, topic=None, method=None):
|
||||||
|
"""
|
||||||
|
:param info: Extra info to convey to the user
|
||||||
|
:param topic: The topic that the rpc call was sent to
|
||||||
|
:param rpc_method_name: The name of the rpc method being
|
||||||
|
called
|
||||||
|
"""
|
||||||
|
self.info = info
|
||||||
|
self.topic = topic
|
||||||
|
self.method = method
|
||||||
|
super(Timeout, self).__init__(
|
||||||
|
None,
|
||||||
|
info=info or _('<unknown>'),
|
||||||
|
topic=topic or _('<unknown>'),
|
||||||
|
method=method or _('<unknown>'))
|
||||||
|
|
||||||
|
|
||||||
class DuplicateMessageError(RPCException):
|
class DuplicateMessageError(RPCException):
|
||||||
@ -441,10 +455,7 @@ def version_is_compatible(imp_version, version):
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def serialize_msg(raw_msg, force_envelope=False):
|
def serialize_msg(raw_msg):
|
||||||
if not _SEND_RPC_ENVELOPE and not force_envelope:
|
|
||||||
return raw_msg
|
|
||||||
|
|
||||||
# NOTE(russellb) See the docstring for _RPC_ENVELOPE_VERSION for more
|
# NOTE(russellb) See the docstring for _RPC_ENVELOPE_VERSION for more
|
||||||
# information about this format.
|
# information about this format.
|
||||||
msg = {_VERSION_KEY: _RPC_ENVELOPE_VERSION,
|
msg = {_VERSION_KEY: _RPC_ENVELOPE_VERSION,
|
||||||
|
@ -221,7 +221,7 @@ class ZmqClient(object):
|
|||||||
def cast(self, msg_id, topic, data, envelope=False):
|
def cast(self, msg_id, topic, data, envelope=False):
|
||||||
msg_id = msg_id or 0
|
msg_id = msg_id or 0
|
||||||
|
|
||||||
if not (envelope or rpc_common._SEND_RPC_ENVELOPE):
|
if not envelope:
|
||||||
self.outq.send(map(bytes,
|
self.outq.send(map(bytes,
|
||||||
(msg_id, topic, 'cast', _serialize(data))))
|
(msg_id, topic, 'cast', _serialize(data))))
|
||||||
return
|
return
|
||||||
@ -295,11 +295,16 @@ class InternalContext(object):
|
|||||||
def reply(self, ctx, proxy,
|
def reply(self, ctx, proxy,
|
||||||
msg_id=None, context=None, topic=None, msg=None):
|
msg_id=None, context=None, topic=None, msg=None):
|
||||||
"""Reply to a casted call."""
|
"""Reply to a casted call."""
|
||||||
# Our real method is curried into msg['args']
|
# NOTE(ewindisch): context kwarg exists for Grizzly compat.
|
||||||
|
# this may be able to be removed earlier than
|
||||||
|
# 'I' if ConsumerBase.process were refactored.
|
||||||
|
if type(msg) is list:
|
||||||
|
payload = msg[-1]
|
||||||
|
else:
|
||||||
|
payload = msg
|
||||||
|
|
||||||
child_ctx = RpcContext.unmarshal(msg[0])
|
|
||||||
response = ConsumerBase.normalize_reply(
|
response = ConsumerBase.normalize_reply(
|
||||||
self._get_response(child_ctx, proxy, topic, msg[1]),
|
self._get_response(ctx, proxy, topic, payload),
|
||||||
ctx.replies)
|
ctx.replies)
|
||||||
|
|
||||||
LOG.debug(_("Sending reply"))
|
LOG.debug(_("Sending reply"))
|
||||||
@ -685,8 +690,8 @@ def _call(addr, context, topic, msg, timeout=None,
|
|||||||
'method': '-reply',
|
'method': '-reply',
|
||||||
'args': {
|
'args': {
|
||||||
'msg_id': msg_id,
|
'msg_id': msg_id,
|
||||||
'context': mcontext,
|
|
||||||
'topic': reply_topic,
|
'topic': reply_topic,
|
||||||
|
# TODO(ewindisch): safe to remove mcontext in I.
|
||||||
'msg': [mcontext, msg]
|
'msg': [mcontext, msg]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,16 +68,21 @@ class RpcProxy(object):
|
|||||||
:param context: The request context
|
:param context: The request context
|
||||||
:param msg: The message to send, including the method and args.
|
:param msg: The message to send, including the method and args.
|
||||||
:param topic: Override the topic for this message.
|
:param topic: Override the topic for this message.
|
||||||
|
:param version: (Optional) Override the requested API version in this
|
||||||
|
message.
|
||||||
:param timeout: (Optional) A timeout to use when waiting for the
|
:param timeout: (Optional) A timeout to use when waiting for the
|
||||||
response. If no timeout is specified, a default timeout will be
|
response. If no timeout is specified, a default timeout will be
|
||||||
used that is usually sufficient.
|
used that is usually sufficient.
|
||||||
:param version: (Optional) Override the requested API version in this
|
|
||||||
message.
|
|
||||||
|
|
||||||
:returns: The return value from the remote method.
|
:returns: The return value from the remote method.
|
||||||
"""
|
"""
|
||||||
self._set_version(msg, version)
|
self._set_version(msg, version)
|
||||||
return rpc.call(context, self._get_topic(topic), msg, timeout)
|
real_topic = self._get_topic(topic)
|
||||||
|
try:
|
||||||
|
return rpc.call(context, real_topic, msg, timeout)
|
||||||
|
except rpc.common.Timeout as exc:
|
||||||
|
raise rpc.common.Timeout(
|
||||||
|
exc.info, real_topic, msg.get('method'))
|
||||||
|
|
||||||
def multicall(self, context, msg, topic=None, version=None, timeout=None):
|
def multicall(self, context, msg, topic=None, version=None, timeout=None):
|
||||||
"""rpc.multicall() a remote method.
|
"""rpc.multicall() a remote method.
|
||||||
@ -85,17 +90,22 @@ class RpcProxy(object):
|
|||||||
:param context: The request context
|
:param context: The request context
|
||||||
:param msg: The message to send, including the method and args.
|
:param msg: The message to send, including the method and args.
|
||||||
:param topic: Override the topic for this message.
|
:param topic: Override the topic for this message.
|
||||||
|
:param version: (Optional) Override the requested API version in this
|
||||||
|
message.
|
||||||
:param timeout: (Optional) A timeout to use when waiting for the
|
:param timeout: (Optional) A timeout to use when waiting for the
|
||||||
response. If no timeout is specified, a default timeout will be
|
response. If no timeout is specified, a default timeout will be
|
||||||
used that is usually sufficient.
|
used that is usually sufficient.
|
||||||
:param version: (Optional) Override the requested API version in this
|
|
||||||
message.
|
|
||||||
|
|
||||||
:returns: An iterator that lets you process each of the returned values
|
:returns: An iterator that lets you process each of the returned values
|
||||||
from the remote method as they arrive.
|
from the remote method as they arrive.
|
||||||
"""
|
"""
|
||||||
self._set_version(msg, version)
|
self._set_version(msg, version)
|
||||||
return rpc.multicall(context, self._get_topic(topic), msg, timeout)
|
real_topic = self._get_topic(topic)
|
||||||
|
try:
|
||||||
|
return rpc.multicall(context, real_topic, msg, timeout)
|
||||||
|
except rpc.common.Timeout as exc:
|
||||||
|
raise rpc.common.Timeout(
|
||||||
|
exc.info, real_topic, msg.get('method'))
|
||||||
|
|
||||||
def cast(self, context, msg, topic=None, version=None):
|
def cast(self, context, msg, topic=None, version=None):
|
||||||
"""rpc.cast() a remote method.
|
"""rpc.cast() a remote method.
|
||||||
|
@ -171,6 +171,14 @@ def generate_authors():
|
|||||||
" log --format='%aN <%aE>' | sort -u | "
|
" log --format='%aN <%aE>' | sort -u | "
|
||||||
"egrep -v '" + jenkins_email + "'")
|
"egrep -v '" + jenkins_email + "'")
|
||||||
changelog = _run_shell_command(git_log_cmd)
|
changelog = _run_shell_command(git_log_cmd)
|
||||||
|
signed_cmd = ("git log --git-dir=" + git_dir +
|
||||||
|
" | grep -i Co-authored-by: | sort -u")
|
||||||
|
signed_entries = _run_shell_command(signed_cmd)
|
||||||
|
if signed_entries:
|
||||||
|
new_entries = "\n".join(
|
||||||
|
[signed.split(":", 1)[1].strip()
|
||||||
|
for signed in signed_entries.split("\n") if signed])
|
||||||
|
changelog = "\n".join((changelog, new_entries))
|
||||||
mailmap = _parse_git_mailmap(git_dir)
|
mailmap = _parse_git_mailmap(git_dir)
|
||||||
with open(new_authors, 'w') as new_authors_fh:
|
with open(new_authors, 'w') as new_authors_fh:
|
||||||
new_authors_fh.write(canonicalize_emails(changelog, mailmap))
|
new_authors_fh.write(canonicalize_emails(changelog, mailmap))
|
||||||
|
Loading…
Reference in New Issue
Block a user