Douglas Henrique Koerich 84b5114027 Images of ptp-notification containers for Debian
This change reorganizes the source directories of the ptp-notification's
containers: locationservice; notificationservice; notificationclient, to
be reused by both CentOS and Debian Dockerfiles to build the images
having the corresponding OS-specific base, together with the new files
used to build images for Debian.

Tests:
PASS: Build images of the 3 containers for Debian
PASS: Upload and apply changed ptp-notification application to pull
      Debian images from private repository (since final tag is
      not possible yet) in a Debian AIO-SX environment

Regression:
PASS: Build images of the 3 containers for CentOS

Story: 2009831
Task: 45658
Signed-off-by: Douglas Henrique Koerich <douglashenrique.koerich@windriver.com>
Change-Id: I4aa9650dbebe5ba68cd4d104ee0995e79681cfa4
2022-07-19 15:01:27 -03:00

32 lines
1.1 KiB
Python

#
# Copyright (c) 2021 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
import kombu.utils.functional
class OsloMessagingPatcher(object):
retry_over_time_orig = None
@staticmethod
def retry_over_time_patch(
fun, catch, args=None, kwargs=None, errback=None,
max_retries=None, interval_start=2, interval_step=2,
interval_max=30, callback=None, timeout=None):
"""
patch to retry_over_time with default max_retries=5
"""
if not max_retries:
max_retries = 2
return OsloMessagingPatcher.retry_over_time_orig(
fun, catch, args, kwargs, errback,
max_retries, interval_start, interval_step,
interval_max, callback, timeout)
@staticmethod
def patch():
if not OsloMessagingPatcher.retry_over_time_orig:
OsloMessagingPatcher.retry_over_time_orig = kombu.utils.functional.retry_over_time
kombu.utils.functional.retry_over_time = OsloMessagingPatcher.retry_over_time_patch
return