Skip to content

Commit

Permalink
STAC-20950 fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaszMarchewka committed Mar 18, 2024
1 parent d9dc5f9 commit 17d44ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/ingestionapikey/ingestionapikey_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func CreateCommand(deps *di.Deps) *cobra.Command {
cmd := &cobra.Command{
Use: "create",
Short: "Create a new Ingestion Api Key",
Long: "Creates a token and then returns it in the response, the token can't be obtained any more after that so store it in the safe space",
Long: "Creates a token and then returns it in the response, the token can't be obtained any more after that so store it in the safe space.",
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyGenerationCommand(args)),
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/ingestionapikey/ingestionapikey_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func DeleteCommand(deps *di.Deps) *cobra.Command {
cmd := &cobra.Command{
Use: "delete",
Short: "Delete an Ingestion Api Key",
Long: "Deleted key can't be used by sources, so all ingestion pipelines for that key will fail",
Long: "Deleted key can't be used by sources, so all ingestion pipelines for that key will fail.",
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyDeleteCommand(args)),
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/ingestionapikey/ingestionapikey_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func ListCommand(deps *di.Deps) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List Ingestion Api Keys",
Long: "Returns only metadata without a key itself",
Long: "Returns only metadata without a key itself.",
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyListCommand),
}

Expand Down

0 comments on commit 17d44ac

Please sign in to comment.