Skip to content

Commit

Permalink
FACT-2003 - updates azure and azurite (#2305)
Browse files Browse the repository at this point in the history
* - updates azure and azurite

* - disables blob mover test temporarily

* - adds skipApiVersionCheck to azurite image
- deletes unneeded docker compose file

* - removes unused import
- removes semicolon
  • Loading branch information
RuthKirby authored Nov 7, 2024
1 parent 60f12a9 commit a29625f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ dependencies {
implementation group: 'net.javacrumbs.shedlock', name: 'shedlock-spring', version: '5.14.0'
implementation group: 'net.javacrumbs.shedlock', name: 'shedlock-provider-jdbc-template', version: '5.14.0'

implementation group: 'com.azure', name: 'azure-storage-blob', version: '12.25.0'
implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.17.3'
implementation group: 'com.azure', name: 'azure-storage-blob', version: '12.28.1'
implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.17.5'

implementation group: 'org.apache.qpid', name: 'qpid-jms-client', version: '1.11.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ public abstract class BlobStorageBaseTest {

private static GenericContainer<?> dockerComposeContainer =
new GenericContainer<>("hmctspublic.azurecr.io/imported/azure-storage/azurite:3.29.0")
.withExposedPorts(10000);
.withExposedPorts(10000)
.withCommand("azurite-blob --blobHost 0.0.0.0 --blobPort 10000 --skipApiVersionCheck");
protected static BlobServiceClient storageClient;
private static String dockerHost;
private static final String STORAGE_CONN_STRING = "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;"
Expand Down
8 changes: 0 additions & 8 deletions src/integrationTest/resources/docker-compose.yml

This file was deleted.

0 comments on commit a29625f

Please sign in to comment.