Skip to content

Commit

Permalink
Merge pull request #457 from input-output-hk/KtorZ/release-polishing
Browse files Browse the repository at this point in the history
Fixed wrong timeout in test expectations + update API specification with latest feature availability
  • Loading branch information
KtorZ authored Jun 24, 2019
2 parents b90d9a7 + a35283d commit 2de07c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ expectCliListItemFieldEqual i getter a out
expectPathEventuallyExist :: FilePath -> IO ()
expectPathEventuallyExist filepath = do
handle <- async doesPathExistNow
winner <- race (threadDelay (10 * oneSecond)) (wait handle)
winner <- race (threadDelay (60 * oneSecond)) (wait handle)
case winner of
Left _ -> expectationFailure $
"waited more than 60s for " <> filepath <> " to be created!"
Expand Down
6 changes: 2 additions & 4 deletions specifications/api/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ paths:
tags: ["Transactions"]
summary: Create
description: |
<p align="right">status: <strong>experimental</strong></p>
<p align="right">status: <strong>stable</strong></p>
parameters:
- *parametersWalletId
- <<: *parametersBody
Expand All @@ -967,11 +967,9 @@ paths:
tags: ["Addresses"]
summary: List
description: |
<p align="right">status: <strong>incomplete¹</strong></p>
<p align="right">status: <strong>stable</strong></p>
Return a list of known addresses, ordered from newest to oldest
> (1) The query parameter `state` isn't yet supported.
parameters:
- *parametersWalletId
- in: query
Expand Down

0 comments on commit 2de07c5

Please sign in to comment.