Skip to content

Commit

Permalink
Merge pull request #939 from zooba/v2.2.1
Browse files Browse the repository at this point in the history
Backport UWP fix
  • Loading branch information
zooba committed Oct 29, 2015
2 parents ba38a7c + 41e3e60 commit df5a3f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Python/Product/Uwp/Project/PythonUwpProjectConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ class PythonUwpProjectConfig :
const int attachRetryLimit = 10;
int attachRetryCount = 0;

// Remove the port number if exist
int index = remoteMachine.IndexOf(':');
if (index != -1) {
remoteMachine = remoteMachine.Substring(0, index);
}

var qualifierString = string.Format(
"tcp://{0}@{1}:{2}?{3}={4}&{5}={6}&{7}={8}",
secret,
Expand Down

0 comments on commit df5a3f9

Please sign in to comment.