Skip to content

Commit

Permalink
fix: fix after config upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
npenin committed Dec 29, 2023
1 parent 5f74332 commit 90625ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pm/src/commands/connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default async function connect(this: State, name: string, context?: Serve
if (!mapping)
mapping = Object.values(this.config.mapping).find(m => m.container === name);
if (!mapping)
mapping = Configuration.new(null, this.processes[name] as SidecarConfiguration);
mapping = await Configuration.new(null, this.processes[name] as SidecarConfiguration);
// console.log(name);
// console.log(mapping);
// console.log(mapping.connect);
Expand Down

0 comments on commit 90625ec

Please sign in to comment.