Skip to content

Commit

Permalink
Merge pull request #117 from shamanec/fix-android-appium-server-up
Browse files Browse the repository at this point in the history
Fix Appium server check for Android
  • Loading branch information
shamanec authored Aug 7, 2024
2 parents a4942a9 + 88be19c commit ed660c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/devices/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ func updateDevices() {
dbDevice.Connected = true
if dbDevice.ProviderState != "preparing" && dbDevice.ProviderState != "live" {
setContext(dbDevice)
dbDevice.AppiumReadyChan = make(chan bool, 1)
if dbDevice.OS == "ios" {
dbDevice.WdaReadyChan = make(chan bool, 1)
dbDevice.AppiumReadyChan = make(chan bool, 1)
go setupIOSDevice(dbDevice)
}

Expand Down

0 comments on commit ed660c9

Please sign in to comment.