Skip to content

Commit 17d44ac

Browse files
STAC-20950 fixed tests
1 parent d9dc5f9 commit 17d44ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/ingestionapikey/ingestionapikey_create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func CreateCommand(deps *di.Deps) *cobra.Command {
2626
cmd := &cobra.Command{
2727
Use: "create",
2828
Short: "Create a new Ingestion Api Key",
29-
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",
29+
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.",
3030
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyGenerationCommand(args)),
3131
}
3232

cmd/ingestionapikey/ingestionapikey_delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func DeleteCommand(deps *di.Deps) *cobra.Command {
1818
cmd := &cobra.Command{
1919
Use: "delete",
2020
Short: "Delete an Ingestion Api Key",
21-
Long: "Deleted key can't be used by sources, so all ingestion pipelines for that key will fail",
21+
Long: "Deleted key can't be used by sources, so all ingestion pipelines for that key will fail.",
2222
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyDeleteCommand(args)),
2323
}
2424

cmd/ingestionapikey/ingestionapikey_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func ListCommand(deps *di.Deps) *cobra.Command {
1515
cmd := &cobra.Command{
1616
Use: "list",
1717
Short: "List Ingestion Api Keys",
18-
Long: "Returns only metadata without a key itself",
18+
Long: "Returns only metadata without a key itself.",
1919
RunE: deps.CmdRunEWithApi(RunIngestionApiKeyListCommand),
2020
}
2121

0 commit comments

Comments
 (0)