From d0bb31399a4dfc32530790acf03304be1690466f Mon Sep 17 00:00:00 2001 From: derailed Date: Fri, 21 Jun 2019 09:59:35 -0600 Subject: [PATCH] add rel notes --- change_logs/release_0.7.9.md | 23 +++++++++++++++++++++++ internal/resource/pod.go | 3 --- 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 change_logs/release_0.7.9.md diff --git a/change_logs/release_0.7.9.md b/change_logs/release_0.7.9.md new file mode 100644 index 00000000..69c97314 --- /dev/null +++ b/change_logs/release_0.7.9.md @@ -0,0 +1,23 @@ + + +# Release v0.7.9 + +## Notes + +Thank you to all that contributed with flushing out issues with K9s! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make K9s better is as always very much appreciated! + +Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) + +--- + +## Change Logs + +Maintenance release a few bugs and code cleanup items. + +--- + +## Resolved Bugs/Features + +--- + + © 2019 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/internal/resource/pod.go b/internal/resource/pod.go index 69b198cf..c1e013ec 100644 --- a/internal/resource/pod.go +++ b/internal/resource/pod.go @@ -210,11 +210,8 @@ func readLogs(ctx context.Context, stream io.ReadCloser, c chan<- string, opts L head := opts.NormalizeName() scanner := bufio.NewScanner(stream) - // count := 0 for scanner.Scan() { txt := scanner.Text() - // log.Debug().Msgf("Pushing %d: %s", count, txt) - // count++ select { case <-ctx.Done(): return