Losing the "new line character" when use watch stream
mikai21 opened this issue · 1 comments
mikai21 commented
Hi,
I lost the new line character when use watch stream like below.
If not using the follow
parameter, then fine. But I want to use stream with new line character.
use case
api = client.CoreV1Api(api_client=self.client)
w = watch.Watch()
return w.stream(api.read_namespaced_pod_log, name=pod_name, namespace=namespace, follow=True)
How about fix like this?
watch.py
timeouts = ('timeout_seconds' in kwargs)
while True:
resp = func(*args, **kwargs)
try:
for line in iter_resp_lines(resp):
yield self.unmarshal_event(line, return_type) + '\n' # <- here!
if self._stop:
break
mikai21 commented
move to kubernetes-client/python#971