diff --git a/mkdocs.yml b/mkdocs.yml index cd1dd9ed5e..77b732ed7f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -60,4 +60,4 @@ nav: - Getting help: getting_help.md edit_uri: edit/main/docs/ extra: - latest_version: 0.14.0 + latest_version: 0.15.0 diff --git a/wait/sql.go b/wait/sql.go index ff305fd8f2..4ef6da25ea 100644 --- a/wait/sql.go +++ b/wait/sql.go @@ -12,7 +12,7 @@ import ( const defaultForSqlQuery = "SELECT 1" //ForSQL constructs a new waitForSql strategy for the given driver -func ForSQL(port nat.Port, driver string, url func(string, nat.Port) string) *waitForSql { +func ForSQL(port nat.Port, driver string, url func(host string, port nat.Port) string) *waitForSql { return &waitForSql{ Port: port, URL: url,