Skip to content

Commit

Permalink
Fix isContainerReady when wave is disabled (#5509) [ci fast]
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso authored Nov 18, 2024
1 parent f0a4c52 commit 3215afa
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ class WaveContainerResolver implements ContainerResolver {

@Override
boolean isContainerReady(String key) {
return client().isContainerReady(key)
final c=client()
return c.enabled()
? c.isContainerReady(key)
: defaultResolver.isContainerReady(key)
}
}

0 comments on commit 3215afa

Please sign in to comment.