forked from flyteorg/flyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix grammar Signed-off-by: SmritiSatyanV <[email protected]> * Updated task.go Signed-off-by: SmritiSatyanV <[email protected]> * Updated configuration.go Signed-off-by: SmritiSatyanV <[email protected]> * Fixed build errors-1 Signed-off-by: SmritiSatyanV <[email protected]> * Fixed build errors-2 Signed-off-by: SmritiSatyanV <[email protected]> * Fixed errors-3 Signed-off-by: SmritiSatyanV <[email protected]> * Updated sandbox_test.go Signed-off-by: SmritiSatyanV <[email protected]> * Fixed errors-4 Signed-off-by: SmritiSatyanV <[email protected]> * Minor grammar fix Changed FlyteCTL to Flytectl Grammar fixes Signed-off-by: SmritiSatyanV <[email protected]> * Fixed errors Signed-off-by: SmritiSatyanV <[email protected]> * Fixed unit test errors Signed-off-by: SmritiSatyanV <[email protected]> * Updates based on comments Signed-off-by: SmritiSatyanV <[email protected]> * Rephrased sentence Signed-off-by: SmritiSatyanV <[email protected]> * Fixed errors Error strings shouldn't begin with upper case or end with punctuation or newline. Signed-off-by: SmritiSatyanV <[email protected]> * Updated project.go Signed-off-by: SmritiSatyanV <[email protected]> * Updated errors.go Signed-off-by: SmritiSatyanV <[email protected]> * Updated project_test.go Signed-off-by: SmritiSatyanV <[email protected]> * stylistic changes Signed-off-by: Samhita Alla <[email protected]> * revert letter case in errors.go Signed-off-by: Samhita Alla <[email protected]> * fix lint errors Signed-off-by: Samhita Alla <[email protected]> Co-authored-by: Samhita Alla <[email protected]>
- Loading branch information
1 parent
9c02f50
commit 9d1d7bf
Showing
134 changed files
with
932 additions
and
853 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
package clierrors | ||
|
||
var ( | ||
ErrInvalidStateUpdate = "Invalid state passed. Specify either activate or archive\n" | ||
ErrInvalidStateUpdate = "invalid state passed. Specify either activate or archive\n" | ||
|
||
ErrProjectNotPassed = "Project id not passed\n" // #nosec | ||
ErrProjectNameNotPassed = "project name is required flag" | ||
ErrFailedProjectUpdate = "Project %v failed to get updated due to %v\n" | ||
ErrProjectNotPassed = "project id wasn't passed\n" // #nosec | ||
ErrProjectNameNotPassed = "project name is a required flag" | ||
ErrFailedProjectUpdate = "Project %v failed to update due to %v\n" | ||
|
||
ErrLPNotPassed = "Launch plan name not passed\n" | ||
ErrLPVersionNotPassed = "Launch plan version not passed\n" //nolint | ||
ErrFailedLPUpdate = "Launch plan %v failed to get updated due to %v\n" | ||
ErrLPNotPassed = "launch plan name wasn't passed\n" | ||
ErrLPVersionNotPassed = "launch plan version wasn't passed\n" //nolint | ||
ErrFailedLPUpdate = "launch plan %v failed to update due to %v\n" | ||
|
||
ErrExecutionNotPassed = "Execution name not passed\n" | ||
ErrFailedExecutionUpdate = "Execution %v failed to get updated due to %v\n" | ||
ErrExecutionNotPassed = "execution name wasn't passed\n" | ||
ErrFailedExecutionUpdate = "execution %v failed to update due to %v\n" | ||
|
||
ErrWorkflowNotPassed = "Workflow name not passed\n" | ||
ErrFailedWorkflowUpdate = "Workflow %v failed to get updated to due to %v\n" | ||
ErrWorkflowNotPassed = "workflow name wasn't passed\n" | ||
ErrFailedWorkflowUpdate = "workflow %v failed to update to due to %v\n" | ||
|
||
ErrTaskNotPassed = "Task name not passed\n" // #nosec | ||
ErrFailedTaskUpdate = "Task %v failed to get updated to due to %v\n" | ||
ErrTaskNotPassed = "task name wasn't passed\n" // #nosec | ||
ErrFailedTaskUpdate = "task %v failed to update to due to %v\n" | ||
|
||
ErrSandboxExists = "Sandbox Exist\n" | ||
ErrSandboxExists = "sandbox already exists!\n" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.