Skip to content

Commit

Permalink
Merge pull request #506 from kube-tarian/fix-app-list
Browse files Browse the repository at this point in the history
fix listing apps with cli
  • Loading branch information
vramk23 authored Jun 4, 2024
2 parents 5be85c1 + c0db433 commit 954da6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capten/agent/internal/api/agent_cluster_apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (a *Agent) DeployDefaultApps(ctx context.Context, request *agentpb.DeployDe
return nil, fmt.Errorf("not implemented")
}

func (a *Agent) GetClusterDefaultApps(ctx context.Context, request *agentpb.GetDefaultAppsStatusRequest) (
func (a *Agent) GetDefaultAppsStatus(ctx context.Context, request *agentpb.GetDefaultAppsStatusRequest) (
*agentpb.GetDefaultAppsStatusResponse, error) {
return nil, fmt.Errorf("not implemented")
}
2 changes: 1 addition & 1 deletion capten/common-pkg/capten-store/app_config_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (a *Store) GetAllApps() ([]*agentpb.SyncAppData, error) {
return nil, fmt.Errorf("failed to fetch apps: %v", err.Error())
}

var appData []*agentpb.SyncAppData
appData := []*agentpb.SyncAppData{}
for _, ac := range appConfigs {
overrideValues, err := base64.StdEncoding.DecodeString(ac.OverrideValues)
if err != nil {
Expand Down

0 comments on commit 954da6a

Please sign in to comment.