From 3297667ef8e36a404b0fa848d4c9d96a1867ead2 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 19 Apr 2022 09:13:18 -0400 Subject: [PATCH] Prune out backspaces Some utilities backspace prior to printing anything, prevent such applications from encroaching on the node name space. --- confluent_client/bin/nodeshell | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_client/bin/nodeshell b/confluent_client/bin/nodeshell index b7ded5ea..06e1efc6 100755 --- a/confluent_client/bin/nodeshell +++ b/confluent_client/bin/nodeshell @@ -162,6 +162,7 @@ def run(): if options.nonodeprefix: sys.stdout.write(line) else: + line = line.lstrip('\x08') sys.stdout.write('{0}: {1}'.format(node, line)) sys.stdout.flush() if all: