From 1d6c176c7f78d378490eb345ec8d66284e6f807d Mon Sep 17 00:00:00 2001 From: RamiBerm Date: Thu, 15 Jul 2021 11:10:16 +0300 Subject: [PATCH] Update tap.go --- cli/cmd/tap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/tap.go b/cli/cmd/tap.go index e63c54c93..037ad4944 100644 --- a/cli/cmd/tap.go +++ b/cli/cmd/tap.go @@ -65,7 +65,7 @@ Supported protocols are HTTP and gRPC.`, if parseHumanDataSizeErr != nil { return errors.New(fmt.Sprintf("Could not parse --max-entries-db-size value %s", humanMaxEntriesDBSize)) } - fmt.Printf("Mizu will store up to %s in traffic, old traffic will be cleared once the limit is reached.\n", units.BytesToHumanReadable(mizuTapOptions.MaxEntriesDBSizeBytes)) + fmt.Printf("Mizu will store up to %s of traffic, old traffic will be cleared once the limit is reached.\n", units.BytesToHumanReadable(mizuTapOptions.MaxEntriesDBSizeBytes)) directionLowerCase := strings.ToLower(direction) if directionLowerCase == "any" {