Skip to content

Commit a3d308a

Browse files
authored
Fixed missing connections when running app workspace commands. (#362)
1 parent f982860 commit a3d308a

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.0.163 (Feb 10, 2026)
2+
* Fixed missing connections when running app workspace commands.
3+
14
# 0.0.162 (Feb 09, 2026)
25
* Fixed panic if application is not found by name.
36

cmd/app_workspace_action.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ func AppWorkspaceAction(c *cli.Context, fn AppWorkspaceFn) error {
5959

6060
return CancellableAction(func(ctx context.Context) error {
6161
return fn(ctx, cfg, app.Details{
62-
App: &application,
63-
Env: &infraDetails.Env,
64-
Workspace: &infraDetails.Workspace,
65-
Module: &infraDetails.Module,
62+
App: &application,
63+
Env: &infraDetails.Env,
64+
Workspace: &infraDetails.Workspace,
65+
WorkspaceConfig: &infraDetails.WorkspaceConfig,
66+
Module: &infraDetails.Module,
6667
})
6768
})
6869
})

0 commit comments

Comments
 (0)