Skip to content

Commit

Permalink
fix: remove username
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Oct 22, 2024
1 parent 9cde4b6 commit 7669083
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ func printPrettyOutput(ui *ui.UI, execution testkube.TestWorkflowExecution) {
if ctx.Actor != nil {
ui.Warn("Actor: ")
ui.Warn(" Name: ", ctx.Actor.Name)
ui.Warn(" Username: ", ctx.Actor.Username)
ui.Warn(" Email: ", ctx.Actor.Email)
ui.Warn(" Execution id: ", ctx.Actor.ExecutionId)
ui.Warn(" Execution path: ", ctx.Actor.ExecutionPath)
Expand Down
1 change: 0 additions & 1 deletion pkg/tcl/mappertcl/testworkflows/openapi_kube.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ func MapTestWorkflowRunningContextActorTypeAPIToKube(v testkube.TestWorkflowRunn
func MapTestWorkflowRunningContextActorAPIToKube(v testkube.TestWorkflowRunningContextActor) testworkflowsv1.TestWorkflowRunningContextActor {
return testworkflowsv1.TestWorkflowRunningContextActor{
Name: v.Name,
Username: v.Username,
Email: v.Email,
ExecutionId: v.ExecutionId,
ExecutionPath: v.ExecutionPath,
Expand Down

0 comments on commit 7669083

Please sign in to comment.