citrusframework / yaks

YAKS is a platform to enable Cloud Native BDD testing on Kubernetes
Apache License 2.0
82 stars 28 forks source link

Wrong condition until inside JdbcSteps #406

Closed StefanFellinger closed 2 years ago

StefanFellinger commented 2 years ago

Found .until((index, context) -> index <= maxRetryAttempts) inside JdbcSteps should be .until((index, context) -> index >= maxRetryAttempts)

Kind regards,

Stefan

christophd commented 2 years ago

many thanks!