We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba38a7c + 41e3e60 commit df5a3f9Copy full SHA for df5a3f9
Python/Product/Uwp/Project/PythonUwpProjectConfig.cs
@@ -100,6 +100,12 @@ private async System.Threading.Tasks.Task RemoteProcessAttachAsync(string remote
100
const int attachRetryLimit = 10;
101
int attachRetryCount = 0;
102
103
+ // Remove the port number if exist
104
+ int index = remoteMachine.IndexOf(':');
105
+ if (index != -1) {
106
+ remoteMachine = remoteMachine.Substring(0, index);
107
+ }
108
+
109
var qualifierString = string.Format(
110
"tcp://{0}@{1}:{2}?{3}={4}&{5}={6}&{7}={8}",
111
secret,
0 commit comments