diff options
| author | Avi Levkovich <avi@twine-s.com> | 2019-11-28 18:00:04 +0200 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2019-11-28 18:00:04 +0200 |
| commit | bac355d83fbd8628336bfa763e9a8b7f1db164e2 (patch) | |
| tree | 037112c61a06eba04610f01b9c9e559b49cf5777 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup | |
| parent | 09b91aa98f10b7109cb97312021de8925a4b5339 (diff) | |
| parent | 8276e5eb7c56b58ed86f611ca5bd9b1dc56b25b9 (diff) | |
| download | Tango-bac355d83fbd8628336bfa763e9a8b7f1db164e2.tar.gz Tango-bac355d83fbd8628336bfa763e9a8b7f1db164e2.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs index 004c37096..29c5bc6a2 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs @@ -135,11 +135,11 @@ namespace Tango.PPC.Common.MachineSetup request.DeviceID = await _windows_manager.GetDeviceId(); request.DeviceName = await _windows_manager.GetDeviceName(); - MachineSetupResponse setup_response = null; try { + LogManager.Log($"Sending setup request...\n{request.ToJsonString()}"); setup_response = await _client.MachineSetup(request); } catch (Exception ex) @@ -180,7 +180,7 @@ namespace Tango.PPC.Common.MachineSetup { LogManager.Log("Installing remote assistance..."); UpdateProgress("Installing remote assistance", "Installing..."); - await _remoteAssistance.InstallRemoteAssistance(serialNumber); + await _remoteAssistance.InstallRemoteAssistance(serialNumber,settings.DeploymentSlot.ToString()); } if (setup_response.SetupUWF) |
