Skip to content

Commit a771fee

Browse files
authored
Update go.mod in azure module (#3231)
when trying to start service bus emulator via the services package I am getting: # github.com/testcontainers/testcontainers-go/modules/azure/servicebus /Users/XXXX/go/pkg/mod/github.com/testcontainers/testcontainers-go/modules/[email protected]/servicebus/servicebus.go:137:65: mssqlContainer.Password undefined (type *mssql.MSSQLServerContainer has no field or method Password, but does have unexported field password) My fix was to change dependency of mysql to version 0.37 in. the indirect dependencies.
1 parent 7f916ae commit a771fee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/azure/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/docker/go-connections v0.5.0
1313
github.com/stretchr/testify v1.10.0
1414
github.com/testcontainers/testcontainers-go v0.37.0
15-
github.com/testcontainers/testcontainers-go/modules/mssql v0.35.0
15+
github.com/testcontainers/testcontainers-go/modules/mssql v0.37.0
1616
)
1717

1818
require (

0 commit comments

Comments
 (0)