If we hit the internal timeout while launching or deleting a server, we raise an exception and then log the traceback. This is a not- unexpected occurance, and the traceback is not useful since it's just one stack frame within the same class, so instead, let's log these timeouts at warning level without the traceback. Change-Id: Id4806d8ea2d0a232504e5a75d69cec239bcac670
90 lines
1.8 KiB
Python
90 lines
1.8 KiB
Python
# 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.
|
|
|
|
|
|
class NotFound(Exception):
|
|
pass
|
|
|
|
|
|
class LaunchNodepoolException(Exception):
|
|
statsd_key = 'error.nodepool'
|
|
|
|
|
|
class LaunchStatusException(Exception):
|
|
statsd_key = 'error.status'
|
|
|
|
|
|
class LaunchNetworkException(Exception):
|
|
statsd_key = 'error.network'
|
|
|
|
|
|
class LaunchKeyscanException(Exception):
|
|
statsd_key = 'error.keyscan'
|
|
|
|
|
|
class CapacityException(Exception):
|
|
statsd_key = 'error.capacity'
|
|
|
|
|
|
class BuilderError(RuntimeError):
|
|
pass
|
|
|
|
|
|
class BuilderInvalidCommandError(BuilderError):
|
|
pass
|
|
|
|
|
|
class DibFailedError(BuilderError):
|
|
pass
|
|
|
|
|
|
class QuotaException(Exception):
|
|
pass
|
|
|
|
|
|
class RuntimeConfigurationException(Exception):
|
|
"""Indicates a fatal and permanent configuration error
|
|
detected at runtime."""
|
|
pass
|
|
|
|
|
|
class TimeoutException(Exception):
|
|
pass
|
|
|
|
|
|
class ConnectionTimeoutException(TimeoutException):
|
|
statsd_key = 'error.ssh'
|
|
|
|
|
|
class IPAddTimeoutException(TimeoutException):
|
|
statsd_key = 'error.ipadd'
|
|
|
|
|
|
class ServerCreateTimeoutException(TimeoutException):
|
|
statsd_key = 'error.servercreatetimeout'
|
|
|
|
|
|
class ServerDeleteTimeoutException(TimeoutException):
|
|
statsd_key = 'error.serverdeletetimeout'
|
|
|
|
|
|
class ImageCreateException(TimeoutException):
|
|
statsd_key = 'error.imagetimeout'
|
|
|
|
|
|
class ZKException(Exception):
|
|
pass
|
|
|
|
|
|
class ZKLockException(ZKException):
|
|
pass
|