Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu committed Jan 24, 2025
1 parent 3787bb8 commit 955b996
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/radcli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (cli *CLI) ResourceList(ctx context.Context, applicationName string) (strin
args := []string{
"resource",
"list",
"containers",
"Applications.Core/containers",
"-a", applicationName,
}
return cli.RunCommand(ctx, args)
Expand All @@ -198,7 +198,7 @@ func (cli *CLI) ResourceLogs(ctx context.Context, applicationName string, resour
"resource",
"logs",
"-a", applicationName,
"containers",
"Applications.Core/containers",
resourceName,
}
return cli.RunCommand(ctx, args)
Expand All @@ -210,7 +210,7 @@ func (cli *CLI) ResourceExpose(ctx context.Context, applicationName string, reso
"resource",
"expose",
"-a", applicationName,
"containers",
"Applications.Core/containers",
resourceName,
"--port", fmt.Sprintf("%d", localPort),
"--remote-port", fmt.Sprintf("%d", remotePort),
Expand Down

0 comments on commit 955b996

Please sign in to comment.