We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dad90b commit f3cea56Copy full SHA for f3cea56
gitpod-remote/src/extension.ts
@@ -30,6 +30,9 @@ export async function activate(context: vscode.ExtensionContext) {
30
if (initial) {
31
initial = false;
32
promise.then(() => tunnelPorts(portList));
33
+ } else {
34
+ // Manually tunnel for now until fixing vscode bug where `remote.autoForwardPortsSource` is not respected on first connection
35
+ tunnelPorts(portList)
36
}
37
portViewProvider.updatePortsStatus(portList);
38
}));
0 commit comments