Skip to content

Commit

Permalink
Update to handle MqttEventsProcessorThreadCount parameter in deployme…
Browse files Browse the repository at this point in the history
…nt file for Windows E2E tests (#810)
  • Loading branch information
philipktlin authored Feb 6, 2019
1 parent 2509438 commit 56a6db1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/windows/test/Run-E2ETest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ Function PrepareTestFromArtifacts
Copy-Item $DirectMethodModuleToModuleDeploymentArtifactFilePath -Destination $DeploymentWorkingFilePath -Force
(Get-Content $DeploymentWorkingFilePath).replace('<UpstreamProtocol>','Mqtt') | Set-Content $DeploymentWorkingFilePath
(Get-Content $DeploymentWorkingFilePath).replace('<ClientTransportType>','Mqtt_Tcp_Only') | Set-Content $DeploymentWorkingFilePath

If ($Architecture -eq "arm32v7")
{
(Get-Content $DeploymentWorkingFilePath).replace('<MqttEventsProcessorThreadCount>','1') | Set-Content $DeploymentWorkingFilePath
}
}
"TempFilter"
{
Expand Down

0 comments on commit 56a6db1

Please sign in to comment.