Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/find.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func patternMatch(pattern, match string) bool {
// supports '*' and '?' wildcards in the pattern string.
// unlike path.Match(), considers a path as a flat name space
// while matching the pattern. The difference is illustrated in
// the example here https://mysilo.golang.org/p/Ega9qgD4Qz .
// the example here https://play.golang.org/p/Ega9qgD4Qz .
func pathMatch(pattern, path string) bool {
return wildcard.Match(pattern, path)
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/support-proxy-set.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ FLAGS:
DESCRIPTION:
This setting configures the outbound path a server uses to reach MinIO
SUBNET. Since this Silo build disables SUBNET entirely, the command is
retained for CLI compatibility and always exits with an error. Use
'{{.HelpName}} ..' -> 'remove' to clear an existing proxy setting.
retained for CLI compatibility and always exits with an error. Run
'mc support proxy remove ALIAS' to clear an existing proxy setting.

EXIT STATUS:
1 - SUBNET services are disabled
Expand Down
Loading