integ/python/python-kubernetes/centos/patches/0011-Fix-Watch-retries-with-410-errors.patch
Kyle MacLeod e2ab5cc2c8 Patch watch.py in python-kubernetes package
Patch the python2-kubernetes-8.0.0-8.el7.noarch.rpm with recent
bug fix commits required for proper kubernetes watch functionality.

Patches watch.py up to commit 10ae476 in the 'base' repo
(kubernetes-client/python-base).

Commits are taken from the cloned github repo, saved in patch format,
and applied as a patch to the source RPM.

Reference:
https://github.com/kubernetes-client/python-base/commits/master/watch/watch.py

This patch includes commits beginning with d56fdbc, up to and including 10ae476

Testing:
- Built and testing on local distributed cloud system
- Similar testing to this patch but  ased on locally modified package
  has been done on 1000 subcloud system
- Examine/compare contents of installed package vs. expected
- Generating events which trigger the watch conditions
- Monitor watches for proper behaviour on expiry

Story: 2008960
Task: 43053

Signed-off-by: Kyle MacLeod <kyle.macleod@windriver.com>
Change-Id: I7ad78957b6ef61e7204c45f482f201d5c281385b
2021-08-25 17:05:03 -04:00

47 lines
1.8 KiB
Diff

From ebea7e343046d7afbbdc0e199294d5c79ae87362 Mon Sep 17 00:00:00 2001
From: Chris Ayoub <chris.ayoubtexas@gmail.com>
Date: Thu, 25 Feb 2021 00:27:33 -0500
Subject: [PATCH 11/13] Fix Watch retries with 410 errors
---
watch/watch.py | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/watch/watch.py b/watch/watch.py
index 3058ed9..b432778 100644
--- a/watch/watch.py
+++ b/watch/watch.py
@@ -151,7 +151,9 @@ class Watch(object):
if 'resource_version' in kwargs:
self.resource_version = kwargs['resource_version']
- timeouts = ('timeout_seconds' in kwargs)
+ # Do not attempt retries if user specifies a timeout.
+ # We want to ensure we are returning within that timeout.
+ disable_retries = ('timeout_seconds' in kwargs)
retry_after_410 = False
while True:
resp = func(*args, **kwargs)
@@ -164,9 +166,9 @@ class Watch(object):
if isinstance(event, dict) \
and event['type'] == 'ERROR':
obj = event['raw_object']
- # Current request expired, let's retry,
+ # Current request expired, let's retry, (if enabled)
# but only if we have not already retried.
- if not retry_after_410 and \
+ if not disable_retries and not retry_after_410 and \
obj['code'] == HTTP_STATUS_GONE:
retry_after_410 = True
break
@@ -190,5 +192,5 @@ class Watch(object):
else:
self._stop = True
- if timeouts or self._stop:
+ if self._stop or disable_retries:
break
--
2.25.1