super.beforeAll() val createTableRequest = new CreateTableRequest() .withTableName(TableName) .withAttributeDefinitions( new AttributeDefinition("id", ScalarAttributeType.S)) .withKeySchema( new KeySchemaElement("id", KeyType.HASH)) .withProvisionedThroughput( new ProvisionedThroughput(1L, 1L)) dynamoDBClient.createTable(createTableRequest) } 16
21:32:01.330 [pool-7-thread-1] DEBUG com.spotify.docker.client.au java.lang.IllegalArgumentException: serverAddress=https://index.d at com.spotify.docker.client.DockerConfigReader.parseDock at com.spotify.docker.client.DockerConfigReader.fromConfi at com.spotify.docker.client.auth.ConfigFileRegistryAuthSu at com.spotify.docker.client.DefaultDockerClient.pull(Def at com.spotify.docker.client.DefaultDockerClient.pull(Def at com.whisk.docker.impl.spotify.SpotifyDockerCommandExecu at com.whisk.docker.impl.spotify.SpotifyDockerCommandExecu at scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0 at scala.concurrent.Future$.$anonfun$apply$1(Future.scala at scala.concurrent.Future$$$Lambda$3750/1704912779.apply at scala.util.Success.$anonfun$map$1(Try.scala:251) at scala util Success map(Try scala:209) 19