Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit f4f12cf

Browse files
committed
Remove outdated flag from run help text
1 parent ed42e92 commit f4f12cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internals/secrethub/run.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ func NewRunCommand(io ui.IO, newClient newClientFunc) *RunCommand {
7272
func (cmd *RunCommand) Register(r command.Registerer) {
7373
const helpShort = "Pass secrets as environment variables to a process."
7474
const helpLong = "To protect against secrets leaking via stdout and stderr, those output streams are monitored for secrets. Detected secrets are automatically masked by replacing them with \"" + maskString + "\". " +
75-
"The output is buffered to detect secrets, but to avoid blocking the buffering is limited to a maximum duration as defined by the --masking-timeout flag. " +
76-
"Therefore, you should regard the masking as a best effort attempt and should always prevent secrets ending up on stdout and stderr in the first place."
75+
"The output is buffered to scan for secrets and can be adjusted using the masking-buffer-period flag. " +
76+
"You should regard the masking as a best effort attempt and should always prevent secrets ending up on stdout and stderr in the first place."
7777

7878
clause := r.Command("run", helpShort)
7979
clause.HelpLong(helpLong)

0 commit comments

Comments
 (0)