Skip to content

Commit

Permalink
Merge pull request #529 from bugsnag/tms/new-command-timeout
Browse files Browse the repository at this point in the history
Correct setting of newCommandTimeout
  • Loading branch information
twometresteve authored May 9, 2023
2 parents 202afa2 + dfc74d9 commit de951b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 7.29.0 - TBD
# 7.29.0 - 2023/05/09

## Enhancements

Expand All @@ -9,6 +9,7 @@

- Only use separate BitBar accounts on CI [526](https://github.com/bugsnag/maze-runner/pull/526)
- Ensure BitBar apiKey is provided when using the tunnel [527](https://github.com/bugsnag/maze-runner/pull/527)
- Correct setting of `newCommandTimeout` capability for BitBar Appium sessions [529](https://github.com/bugsnag/maze-runner/pull/529)

# 7.28.0 - 2023/05/02

Expand Down
2 changes: 1 addition & 1 deletion lib/maze/client/appium/bb_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def device_capabilities
prefix = BitBarDevices.caps_prefix(config.appium_version)
capabilities = {
"#{prefix}noReset" => true,
"#{prefix}newCommandTimeout" => 0,
'bitbar:options' => {
# Some capabilities probably belong in the top level
# of the hash, but BitBar picks them up from here.
'apiKey' => config.access_key,
'app' => config.app,
"#{prefix}newCommandTimeout" => 0,
'findDevice' => false,
'testTimeout' => 7200
}
Expand Down

0 comments on commit de951b7

Please sign in to comment.