David Ankin

Results 93 comments of David Ankin

> > I am not sure about relying on the uuid type, as it does not appear to be supported by mysql 8 > > Is there somewhere where it...

@nwoltman can you enable the issues tracker on your fork, which supports, this, and also pull in new changes from this repository, like fixes which have been implemented since you...

it may be useful to note which branch is the most up to date and recommended *for new projects*, on whatever repository/fork, while issues of backwards compatibility and breaking get...

you can set a breakpoint here: `org.testcontainers.shaded.com.github.dockerjava.core.DefaultDockerClientConfig#overrideDockerPropertiesWithSystemProperties` https://github.com/docker-java/docker-java/blob/84d7750d7f290c66f0ae18c88ab92a3cde2c804d/docker-java-core/src/main/java/com/github/dockerjava/core/DefaultDockerClientConfig.java#L209-L219 ```java private static Properties overrideDockerPropertiesWithSystemProperties(Properties p, Properties systemProperties) { Properties overriddenProperties = new Properties(); overriddenProperties.putAll(p); for (String key : CONFIG_KEYS) { if...

so the main ask here is that there be a way to globally set macos to use the `linux/x86_64` images via a system property or something? (potentially for specific images)....

This is an issue I ran into at work and exposing the conflicting dependency as `api(platform(` was the solution i settled on. A couple of things I found was that...

several people are saying this: https://github.com/pydantic/pydantic/discussions/2889 https://github.com/pydantic/pydantic/issues/8551 https://github.com/pydantic/pydantic/issues/8379 https://github.com/pydantic/pydantic/discussions/8725 and some with "resolutions" (i think incomplete ones as this is advocating for the more general case): https://github.com/pydantic/pydantic/issues/1366 https://github.com/pydantic/pydantic/issues/892 my search...

want to authenticate and set my header at the beginning with a hook. instead i have to hobble together some command line scripts to do this and put them in...

> Logging in should probably be part of the scenario itself in your use case. Running external scripts to generate payload data is the perfect use case for something like...