From 36d9f777f7e27655de06a38626d6bf26b75930b9 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Tue, 23 Jul 2024 16:31:38 +0530 Subject: [PATCH 01/24] PD-249429: integrated emodb with datastorage-media-service for getting the metadata from s3. --- blob/pom.xml | 5 + .../emodb/blob/config/ApiClient.java | 143 ++++++++++++++++++ .../emodb/blob/core/DefaultBlobStore.java | 18 +-- .../resources/blob/BlobStoreResource1.java | 7 +- 4 files changed, 158 insertions(+), 15 deletions(-) create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java diff --git a/blob/pom.xml b/blob/pom.xml index a1708a21d8..31f1d9dce8 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -234,5 +234,10 @@ jersey-client test + + org.glassfish + javax.json + 1.0.4 + diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java new file mode 100644 index 0000000000..1d66d5bf9f --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -0,0 +1,143 @@ +package com.bazaarvoice.emodb.blob.config; + +import com.bazaarvoice.emodb.blob.api.BlobMetadata; +import com.bazaarvoice.emodb.blob.api.DefaultBlobMetadata; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import javax.json.*; +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.io.StringReader; +import java.net.HttpURLConnection; +import java.net.URL; +import java.net.URLEncoder; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.*; + +public class ApiClient { + + private static final Logger LOGGER = LoggerFactory.getLogger(ApiClient.class); + private final String BASE_URL = "http://localhost:8082/blob"; + private final String TENANT_NAME = "datastorage"; + public Iterator getBlobMetadata(String tableName) { + try { + LOGGER.debug(" Constructing URL and consuming datastorage-media-service URL "); + String[] parts = tableName.split(":"); + String table = parts[0]; + String clientName = parts[1]; + + // Constructing URL with path variable and query parameters. + String urlString = String.format("%s/%s/%s/%s", + BASE_URL, + URLEncoder.encode(TENANT_NAME, "UTF-8"), + URLEncoder.encode(table, "UTF-8"), + URLEncoder.encode(clientName, "UTF-8")); + + URL url = new URL(urlString); + HttpURLConnection connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod("GET"); + + // Setting headers + connection.setRequestProperty("Accept", "application/json"); + + int responseCode = connection.getResponseCode(); + + if (responseCode == HttpURLConnection.HTTP_OK) { + BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream())); + String inputLine; + StringBuilder response = new StringBuilder(); + + while ((inputLine = in.readLine()) != null) { + response.append(inputLine); + } + in.close(); + System.out.println(response); + LOGGER.info(" Before mapping of the response "); + return mapResponseToBlobMetaData(response.toString()).iterator(); + } else { + System.out.println("GET request not worked"); + } + } catch (Exception e) { + e.printStackTrace(); + } + + return null; + } + + public List mapResponseToBlobMetaData(String response) { + + // Parse JSON string to JsonArray + JsonReader jsonReader = Json.createReader(new StringReader(response)); + JsonArray jsonArray = jsonReader.readArray(); + jsonReader.close(); + + // Convert JsonArray to List + List blobMetadata = new ArrayList<>(); + for (JsonObject jsonObject : jsonArray.getValuesAs(JsonObject.class)) { + long length = Long.parseLong(String.valueOf(jsonObject.getInt("length"))); + + System.out.println(" Length " + length); + Map attributes = convertStringAttributesToMap((JsonObject) jsonObject.get("attributes")); + BlobMetadata blobMetadataObject = new DefaultBlobMetadata(jsonObject.getString("id"), + convertToDate(jsonObject.getString("timestamp")), + length, + jsonObject.getString("md5"), + jsonObject.getString("sha1"), + attributes); + blobMetadata.add(blobMetadataObject); + System.out.println(jsonObject); + } + LOGGER.info(" After mapping of the response "); + System.out.println(" BlobMetaData " + blobMetadata); + return blobMetadata; + } + + public Date convertToDate(String timestamp) { + LOGGER.info(" Date to be parsed {} ", timestamp); + SimpleDateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH); + try { + // Parse the string into a Date object + return formatter.parse(timestamp); + } catch (ParseException e) { + LOGGER.error(" Date could not be parsed {} ", timestamp); + } + return null; + } + + public Map convertStringAttributesToMap(JsonObject attributes) { + LOGGER.info(" Attributes to be parsed {} ", attributes); + // Convert JsonObject to Map + Map attributesMap = new HashMap<>(); + for (Map.Entry entry : attributes.entrySet()) { + String key = entry.getKey(); + JsonValue value = entry.getValue(); + String stringValue; + + // Determine the type of the value and convert accordingly + switch (value.getValueType()) { + case STRING: + stringValue = ((JsonString) value).getString(); + break; + // Handles integers and floats + case TRUE: + stringValue = "true"; + break; + case FALSE: + stringValue = "false"; + break; + case NULL: + stringValue = null; + break; + // Convert JSON object/array to string + default: + stringValue = value.toString(); // Fallback for any other types + break; + } + attributesMap.put(key, stringValue); + } + + return attributesMap; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java index 8eba374154..cc44d9edc4 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java @@ -11,6 +11,7 @@ import com.bazaarvoice.emodb.blob.api.Range; import com.bazaarvoice.emodb.blob.api.RangeSpecification; import com.bazaarvoice.emodb.blob.api.StreamSupplier; +import com.bazaarvoice.emodb.blob.config.ApiClient; import com.bazaarvoice.emodb.blob.db.MetadataProvider; import com.bazaarvoice.emodb.blob.db.StorageProvider; import com.bazaarvoice.emodb.blob.db.StorageSummary; @@ -227,20 +228,9 @@ public BlobMetadata getMetadata(String tableName, String blobId) throws BlobNotF @Override public Iterator scanMetadata(String tableName, @Nullable String fromBlobIdExclusive, long limit) { checkLegalTableName(tableName); - checkArgument(fromBlobIdExclusive == null || Names.isLegalBlobId(fromBlobIdExclusive), "fromBlobIdExclusive"); - checkArgument(limit > 0, "Limit must be >0"); - - final Table table = _tableDao.get(tableName); - - // Stream back results. Don't hold them all in memory at once. - LimitCounter remaining = new LimitCounter(limit); - return remaining.limit(Iterators.transform(_metadataProvider.scanMetadata(table, fromBlobIdExclusive, remaining), - new Function, BlobMetadata>() { - @Override - public BlobMetadata apply(Map.Entry entry) { - return newMetadata(table, entry.getKey(), entry.getValue()); - } - })); + ApiClient apiClient = new ApiClient(); + LOGGER.debug(" Before calling the endpoint "); + return apiClient.getBlobMetadata(tableName); } private static BlobMetadata newMetadata(Table table, String blobId, StorageSummary s) { diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index a3869e8214..aa5de872f0 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -148,6 +148,7 @@ public Meter load(String key) throws Exception { }); } + //change @GET @Path("_table") @Timed(name = "bv.emodb.blob.BlobStoreResource1.listTables", absolute = true) @@ -196,6 +197,7 @@ public SuccessResponse createTable(@PathParam("table") String table, return SuccessResponse.instance(); } + //change @DELETE @Path("_table/{table}") @RequiresPermissions("blob|drop_table|{table}") @@ -332,6 +334,7 @@ public Response head(@PathParam("table") String table, /** * Retrieves a list of content items in a particular table. */ + //change @GET @Path("{table}") @RequiresPermissions("blob|read|{table}") @@ -344,7 +347,7 @@ public Iterator scanMetadata(@PathParam("table") String table, @QueryParam("from") String blobId, @QueryParam("limit") @DefaultValue("10") LongParam limit, @Authenticated Subject subject) { - _scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); +// _scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); return streamingIterator(_blobStore.scanMetadata(table, Strings.emptyToNull(blobId), limit.get())); } @@ -364,6 +367,7 @@ public Collection getTablePlacements(@Authenticated Subject subject) { } + //change /** * Retrieves the current version of a piece of content from the data store. */ @@ -453,6 +457,7 @@ private String safeResponseContentType(String metadataContentType) { return MediaType.APPLICATION_OCTET_STREAM; } + //change @PUT @Path("{table}/{blobId}") @Consumes(MediaType.WILDCARD) From 8e506594f6ceda454b14d83f2ac168722b421d86 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Wed, 24 Jul 2024 09:27:13 +0530 Subject: [PATCH 02/24] PD-249429: refactored code. --- .../emodb/web/resources/blob/BlobStoreResource1.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index aa5de872f0..fb5fb7e2c5 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -148,7 +148,6 @@ public Meter load(String key) throws Exception { }); } - //change @GET @Path("_table") @Timed(name = "bv.emodb.blob.BlobStoreResource1.listTables", absolute = true) @@ -197,7 +196,6 @@ public SuccessResponse createTable(@PathParam("table") String table, return SuccessResponse.instance(); } - //change @DELETE @Path("_table/{table}") @RequiresPermissions("blob|drop_table|{table}") @@ -334,7 +332,6 @@ public Response head(@PathParam("table") String table, /** * Retrieves a list of content items in a particular table. */ - //change @GET @Path("{table}") @RequiresPermissions("blob|read|{table}") @@ -347,7 +344,7 @@ public Iterator scanMetadata(@PathParam("table") String table, @QueryParam("from") String blobId, @QueryParam("limit") @DefaultValue("10") LongParam limit, @Authenticated Subject subject) { -// _scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); + _scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); return streamingIterator(_blobStore.scanMetadata(table, Strings.emptyToNull(blobId), limit.get())); } @@ -366,8 +363,6 @@ public Collection getTablePlacements(@Authenticated Subject subject) { return _blobStore.getTablePlacements(); } - - //change /** * Retrieves the current version of a piece of content from the data store. */ @@ -457,7 +452,6 @@ private String safeResponseContentType(String metadataContentType) { return MediaType.APPLICATION_OCTET_STREAM; } - //change @PUT @Path("{table}/{blobId}") @Consumes(MediaType.WILDCARD) From 08fc399bb79bcf8e374bcf70129e0de9d8e37e2b Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Wed, 24 Jul 2024 10:51:30 +0530 Subject: [PATCH 03/24] PD-249428: DELETE blob with blob id. --- .../emodb/blob/api/TenantRequest.java | 23 ++++++++ .../emodb/blob/config/ApiClient.java | 56 ++++++++++++++++++- .../emodb/blob/core/DefaultBlobStore.java | 9 ++- .../resources/blob/BlobStoreResource1.java | 3 +- 4 files changed, 84 insertions(+), 7 deletions(-) create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/api/TenantRequest.java diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/api/TenantRequest.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/TenantRequest.java new file mode 100644 index 0000000000..61dc7eb524 --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/TenantRequest.java @@ -0,0 +1,23 @@ +package com.bazaarvoice.emodb.blob.api; + +public class TenantRequest { + + private String tenantName; + + public TenantRequest(String tenantName) { + this.tenantName = tenantName; + } + + public String getTenantName() { + return tenantName; + } + + public void setTenantName(String tenantName) { + this.tenantName = tenantName; + } + + @Override + public String toString() { + return "{\"tenantName\":\"" + tenantName + "\"}"; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index 1d66d5bf9f..736a11851b 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -2,16 +2,19 @@ import com.bazaarvoice.emodb.blob.api.BlobMetadata; import com.bazaarvoice.emodb.blob.api.DefaultBlobMetadata; +import com.bazaarvoice.emodb.blob.api.TenantRequest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.json.*; import java.io.BufferedReader; import java.io.InputStreamReader; +import java.io.OutputStream; import java.io.StringReader; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.*; @@ -21,6 +24,8 @@ public class ApiClient { private static final Logger LOGGER = LoggerFactory.getLogger(ApiClient.class); private final String BASE_URL = "http://localhost:8082/blob"; private final String TENANT_NAME = "datastorage"; + public final String SUCCESS_MSG = "Successfully deleted blob."; + public Iterator getBlobMetadata(String tableName) { try { LOGGER.debug(" Constructing URL and consuming datastorage-media-service URL "); @@ -57,7 +62,56 @@ public Iterator getBlobMetadata(String tableName) { LOGGER.info(" Before mapping of the response "); return mapResponseToBlobMetaData(response.toString()).iterator(); } else { - System.out.println("GET request not worked"); + LOGGER.debug(" GET operation halted with error "); + } + } catch (Exception e) { + e.printStackTrace(); + } + + return null; + } + + public String deleteBlobFromTable(String tableName, String blobId) { + try { + LOGGER.debug(" Constructing URL and consuming datastorage-media-service delete blob URL "); + String[] parts = tableName.split(":"); + String table = parts[0]; + String clientName = parts[1]; + TenantRequest tenantRequest = new TenantRequest(TENANT_NAME); + System.out.println(" Tenant Request " + tenantRequest); + + // Constructing URL with path variable and query parameters. + String urlString = String.format("%s/%s:%s/%s", + BASE_URL + "/delete", + URLEncoder.encode(table, "UTF-8"), + URLEncoder.encode(clientName, "UTF-8"), + URLEncoder.encode(blobId, "UTF-8")); + + LOGGER.info(" URL {} ", urlString); + URL url = new URL(urlString); + HttpURLConnection connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod("DELETE"); + + // Setting headers + connection.setRequestProperty("Content-Type", "application/json; utf-8"); + connection.setRequestProperty("Accept", "application/json"); + + // Enable output for the request body + connection.setDoOutput(true); + + // Write the request body + try (OutputStream os = connection.getOutputStream()) { + byte[] input = tenantRequest.toString().getBytes(StandardCharsets.UTF_8); + os.write(input, 0, input.length); + } + + int responseCode = connection.getResponseCode(); + + if (responseCode == HttpURLConnection.HTTP_OK) { + LOGGER.debug(" Blob with id {} deleted successfully", blobId); + return SUCCESS_MSG; + } else { + LOGGER.debug(" Blob with id {} didn't get deleted ", blobId); } } catch (Exception e) { e.printStackTrace(); diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java index cc44d9edc4..cf25d5cbcc 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java @@ -405,11 +405,10 @@ public void delete(String tableName, String blobId) { checkLegalTableName(tableName); checkLegalBlobId(blobId); - Table table = _tableDao.get(tableName); - - StorageSummary storageSummary = _metadataProvider.readMetadata(table, blobId); - - delete(table, blobId, storageSummary); + ApiClient apiClient = new ApiClient(); + String response = apiClient.deleteBlobFromTable(tableName, blobId); + if (response.equalsIgnoreCase(apiClient.SUCCESS_MSG)) + LOGGER.info(" {} ", apiClient.SUCCESS_MSG); } private void delete(Table table, String blobId, StorageSummary storageSummary) { diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index fb5fb7e2c5..962fec915b 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -497,6 +497,7 @@ public SuccessResponse put(@PathParam("table") String table, return SuccessResponse.instance(); } + //change @DELETE @Path("{table}/{blobId}") @RequiresPermissions("blob|update|{table}") @@ -508,7 +509,7 @@ public SuccessResponse put(@PathParam("table") String table, public SuccessResponse delete(@PathParam("table") String table, @PathParam("blobId") String blobId, @Authenticated Subject subject) { - _deleteObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); +// _deleteObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); _blobStore.delete(table, blobId); return SuccessResponse.instance(); } From 886b2a20fd3eeda8dcd44a242172360aa6fe041c Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Wed, 24 Jul 2024 10:53:51 +0530 Subject: [PATCH 04/24] PD-249428: Refactored code.. --- .../emodb/web/resources/blob/BlobStoreResource1.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index 962fec915b..fb5fb7e2c5 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -497,7 +497,6 @@ public SuccessResponse put(@PathParam("table") String table, return SuccessResponse.instance(); } - //change @DELETE @Path("{table}/{blobId}") @RequiresPermissions("blob|update|{table}") @@ -509,7 +508,7 @@ public SuccessResponse put(@PathParam("table") String table, public SuccessResponse delete(@PathParam("table") String table, @PathParam("blobId") String blobId, @Authenticated Subject subject) { -// _deleteObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); + _deleteObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); _blobStore.delete(table, blobId); return SuccessResponse.instance(); } From b4a242d95595c347d66196f09e3be32e8e21fd74 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 25 Jul 2024 16:14:24 +0530 Subject: [PATCH 05/24] PD-249428: Implemented upload blob from byte array. --- .../emodb/blob/api/Attributes.java | 79 ++++++++++++ .../emodb/blob/api/BlobAttributes.java | 79 ++++++++++++ .../emodb/blob/api/UploadByteRequestBody.java | 46 +++++++ .../emodb/blob/config/ApiClient.java | 117 ++++++++++++++++-- .../emodb/blob/config/PlatformClient.java | 36 ++++++ .../emodb/blob/core/DefaultBlobStore.java | 55 ++------ .../databus/DatabusJerseyTest.java | 11 ++ .../resources/blob/BlobStoreResource1.java | 18 --- 8 files changed, 364 insertions(+), 77 deletions(-) create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/api/Attributes.java create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/api/BlobAttributes.java create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/api/UploadByteRequestBody.java create mode 100644 blob/src/main/java/com/bazaarvoice/emodb/blob/config/PlatformClient.java diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/api/Attributes.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/Attributes.java new file mode 100644 index 0000000000..d22d0fc6b0 --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/Attributes.java @@ -0,0 +1,79 @@ +package com.bazaarvoice.emodb.blob.api; + +public class Attributes { + private String client; + private String contentType; + private String legacyInternalId; + private String platformclient; + private String size; + private String type; + + public Attributes(String client, String contentType, String legacyInternalId, String platformclient, String size, String type) { + this.client = client; + this.contentType = contentType; + this.legacyInternalId = legacyInternalId; + this.platformclient = platformclient; + this.size = size; + this.type = type; + } + + public String getClient() { + return client; + } + + public void setClient(String client) { + this.client = client; + } + + public String getContentType() { + return contentType; + } + + public void setContentType(String contentType) { + this.contentType = contentType; + } + + public String getLegacyInternalId() { + return legacyInternalId; + } + + public void setLegacyInternalId(String legacyInternalId) { + this.legacyInternalId = legacyInternalId; + } + + public String getPlatformclient() { + return platformclient; + } + + public void setPlatformclient(String platformclient) { + this.platformclient = platformclient; + } + + public String getSize() { + return size; + } + + public void setSize(String size) { + this.size = size; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + @Override + public String toString() { + return "{" + + "\"client\": \"" + client + "\"" + + ", \"contentType\": \"" + contentType + "\"" + + ", \"legacyInternalId\": \"" + legacyInternalId + "\"" + + ", \"platformclient\": \"" + platformclient + "\"" + + ", \"size\": \"" + size + "\"" + + ", \"type\": \"" + type + "\"" + + "}"; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/api/BlobAttributes.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/BlobAttributes.java new file mode 100644 index 0000000000..9eca539e8d --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/BlobAttributes.java @@ -0,0 +1,79 @@ +package com.bazaarvoice.emodb.blob.api; + +public class BlobAttributes { + private String id; + private String timestamp; + private long length; + private String md5; + private String sha1; + private Attributes attributes; + + public BlobAttributes(String id, String timestamp, long length, String md5, String sha1, Attributes attributes) { + this.id = id; + this.timestamp = timestamp; + this.length = length; + this.md5 = md5; + this.sha1 = sha1; + this.attributes = attributes; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getTimestamp() { + return timestamp; + } + + public void setTimestamp(String timestamp) { + this.timestamp = timestamp; + } + + public long getLength() { + return length; + } + + public void setLength(long length) { + this.length = length; + } + + public String getMd5() { + return md5; + } + + public void setMd5(String md5) { + this.md5 = md5; + } + + public String getSha1() { + return sha1; + } + + public void setSha1(String sha1) { + this.sha1 = sha1; + } + + public Attributes getAttributes() { + return attributes; + } + + public void setAttributes(Attributes attributes) { + this.attributes = attributes; + } + + @Override + public String toString() { + return "{" + + "\"id\": \"" + id + "\"" + + ", \"timestamp\": \"" + timestamp + "\"" + + ", \"length\": \"" + length + "\"" + + ", \"md5\": \"" + md5 + "\"" + + ", \"sha1\": \"" + sha1 + "\"" + + ", \"attributes\": " + attributes + + "}"; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/api/UploadByteRequestBody.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/UploadByteRequestBody.java new file mode 100644 index 0000000000..5504c5bc77 --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/api/UploadByteRequestBody.java @@ -0,0 +1,46 @@ +package com.bazaarvoice.emodb.blob.api; + +public class UploadByteRequestBody { + private String base64; + private String tenantName; + private BlobAttributes blobAttributes; + + public UploadByteRequestBody(String base64, String tenantName, BlobAttributes blobAttributes) { + this.base64 = base64; + this.tenantName = tenantName; + this.blobAttributes = blobAttributes; + } + + public String getBase64() { + return base64; + } + + public void setBase64(String base64) { + this.base64 = base64; + } + + public String getTenantName() { + return tenantName; + } + + public void setTenantName(String tenantName) { + this.tenantName = tenantName; + } + + public BlobAttributes getBlobAttributes() { + return blobAttributes; + } + + public void setBlobAttributes(BlobAttributes blobAttributes) { + this.blobAttributes = blobAttributes; + } + + @Override + public String toString() { + return "{" + + "\"base64\": \"" + base64 + "\"" + + ", \"tenantName\": \"" + tenantName + "\"" + + ", \"blobAttributes\": " + blobAttributes + + "}"; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index 736a11851b..ab63743881 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -1,16 +1,11 @@ package com.bazaarvoice.emodb.blob.config; -import com.bazaarvoice.emodb.blob.api.BlobMetadata; -import com.bazaarvoice.emodb.blob.api.DefaultBlobMetadata; -import com.bazaarvoice.emodb.blob.api.TenantRequest; +import com.bazaarvoice.emodb.blob.api.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.json.*; -import java.io.BufferedReader; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.StringReader; +import java.io.*; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; @@ -78,7 +73,6 @@ public String deleteBlobFromTable(String tableName, String blobId) { String table = parts[0]; String clientName = parts[1]; TenantRequest tenantRequest = new TenantRequest(TENANT_NAME); - System.out.println(" Tenant Request " + tenantRequest); // Constructing URL with path variable and query parameters. String urlString = String.format("%s/%s:%s/%s", @@ -120,7 +114,57 @@ public String deleteBlobFromTable(String tableName, String blobId) { return null; } - public List mapResponseToBlobMetaData(String response) { + public void uploadBlobFromByteArray(String tableName, String blobId, String md5, String sha1, Map attributes, + InputStream inputStream) { + try { + LOGGER.debug(" Constructing URL and consuming datastorage-media-service upload blob byte array URL "); + String[] parts = tableName.split(":"); + String table = parts[0]; + String clientName = parts[1]; + UploadByteRequestBody uploadByteRequestBody = createUploadBlobRequestBody(table, clientName, blobId, + md5, sha1, attributes, inputStream); + // Constructing URL with path variable and query parameters. + String urlString = String.format("%s/%s:%s/%s?contentType=%s", + BASE_URL + "/uploadByteArray", + URLEncoder.encode(table, "UTF-8"), + URLEncoder.encode(clientName, "UTF-8"), + URLEncoder.encode(blobId, "UTF-8"), + URLEncoder.encode("image/jpeg", "UTF-8")); + + LOGGER.info(" URL {} ", urlString); + URL url = new URL(urlString); + HttpURLConnection connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod("POST"); + + // Setting headers + connection.setRequestProperty("Content-Type", "application/json; utf-8"); + connection.setRequestProperty("Accept", "*/*"); + connection.setRequestProperty("X-BV-API-KEY", "uat_admin"); + + // Enable output for the request body + connection.setDoOutput(true); + + // Write the request body + try (OutputStream os = connection.getOutputStream()) { + byte[] input = uploadByteRequestBody.toString().getBytes(StandardCharsets.UTF_8); + os.write(input, 0, input.length); + } + + + int responseCode = connection.getResponseCode(); + + if (responseCode == HttpURLConnection.HTTP_OK) { + LOGGER.debug(" Blob with id {} uploaded successfully", blobId); + } else { + LOGGER.debug(" Blob with id {} didn't get uploaded ", blobId); + } + } catch (Exception e) { + LOGGER.error(" Exception occurred during putting the object to s3 ", e); + } + + } + + private List mapResponseToBlobMetaData(String response) { // Parse JSON string to JsonArray JsonReader jsonReader = Json.createReader(new StringReader(response)); @@ -148,7 +192,7 @@ public List mapResponseToBlobMetaData(String response) { return blobMetadata; } - public Date convertToDate(String timestamp) { + private Date convertToDate(String timestamp) { LOGGER.info(" Date to be parsed {} ", timestamp); SimpleDateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH); try { @@ -160,7 +204,7 @@ public Date convertToDate(String timestamp) { return null; } - public Map convertStringAttributesToMap(JsonObject attributes) { + private Map convertStringAttributesToMap(JsonObject attributes) { LOGGER.info(" Attributes to be parsed {} ", attributes); // Convert JsonObject to Map Map attributesMap = new HashMap<>(); @@ -194,4 +238,55 @@ public Map convertStringAttributesToMap(JsonObject attributes) { return attributesMap; } + + private UploadByteRequestBody createUploadBlobRequestBody(String table, String clientName, String blobId, String md5, + String sha1, Map attributes, + InputStream inputStream) { + PlatformClient platformClient = new PlatformClient(table, clientName); + Attributes attributesForRequest = new Attributes(clientName, "image/jpeg", + "", "", "", "photo"); + BlobAttributes blobAttributesForRequest = new BlobAttributes(blobId, createTimestamp(), 0, md5, sha1, attributesForRequest); + return new UploadByteRequestBody(convertInputStreamToBase64(inputStream), + TENANT_NAME, blobAttributesForRequest); + } + + private String createTimestamp() { + SimpleDateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH); + + // Set the time zone to GMT + formatter.setTimeZone(TimeZone.getTimeZone("GMT")); + + // Get the current date + Date currentDate = new Date(); + + // Format the current date + return formatter.format(currentDate); + } + + private String convertInputStreamToBase64(InputStream inputStream) { + try { + // Convert InputStream to Base64 encoded string + return convertToBase64(inputStream); + } catch (IOException e) { + LOGGER.error(" InputStream cannot be converted into base64... ", e); + } + return null; + } + + public String convertToBase64(InputStream inputStream) throws IOException { + ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); + byte[] buffer = new byte[8192]; + int bytesRead; + + // Read bytes from the InputStream and write them to the ByteArrayOutputStream + while ((bytesRead = inputStream.read(buffer)) != -1) { + outputStream.write(buffer, 0, bytesRead); + } + + // Convert the ByteArrayOutputStream to a byte array + byte[] byteArray = outputStream.toByteArray(); + + // Encode the byte array to a Base64 encoded string + return Base64.getEncoder().encodeToString(byteArray); + } } diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/PlatformClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/PlatformClient.java new file mode 100644 index 0000000000..d8b503bf8d --- /dev/null +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/PlatformClient.java @@ -0,0 +1,36 @@ +package com.bazaarvoice.emodb.blob.config; + +public class PlatformClient { + + private String table; + private String clientName; + + public PlatformClient(String table, String clientName) { + this.table = table; + this.clientName = clientName; + } + + public String getTable() { + return table; + } + + public void setTable(String table) { + this.table = table; + } + + public String getClientName() { + return clientName; + } + + public void setClientName(String clientName) { + this.clientName = clientName; + } + + @Override + public String toString() { + return "{" + + "\"table\": \"" + table + "\"" + + ", \"clientName\": \"" + clientName + "\"" + + "}"; + } +} diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java index cf25d5cbcc..2bab784e83 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java @@ -341,63 +341,22 @@ private static void copyTo(ByteBuffer buf, OutputStream out) throws IOException public void put(String tableName, String blobId, Supplier in, Map attributes) throws IOException { checkLegalTableName(tableName); checkLegalBlobId(blobId); + LOGGER.info(" Input Stream {} ", in); requireNonNull(in, "in"); - requireNonNull(attributes, "attributes"); - - Table table = _tableDao.get(tableName); - - StorageSummary summary = putObject(table, blobId, in, attributes); - - try { - _metadataProvider.writeMetadata(table, blobId, summary); - } catch (Throwable t) { - LOGGER.error("Failed to upload metadata for table: {}, blobId: {}, attempt to delete blob. Exception: {}", tableName, blobId, t.getMessage()); - - try { - _storageProvider.deleteObject(table, blobId); - } catch (Exception e1) { - LOGGER.error("Failed to delete blob for table: {}, blobId: {}. Inconsistency between blob and metadata storages. Exception: {}", tableName, blobId, e1.getMessage()); - _metaDataNotPresentMeter.mark(); - } finally { - Throwables.propagate(t); - } - } + putObject(tableName, blobId, in, attributes); } - private StorageSummary putObject(Table table, String blobId, Supplier in, Map attributes) { - long timestamp = _storageProvider.getCurrentTimestamp(table); - int chunkSize = _storageProvider.getDefaultChunkSize(); - checkArgument(chunkSize > 0); - DigestInputStream md5In = new DigestInputStream(in.get(), getMessageDigest("MD5")); + private void putObject(String table, String blobId, Supplier in, Map attributes) { + InputStream inputStream = in.get(); + DigestInputStream md5In = new DigestInputStream(inputStream, getMessageDigest("MD5")); DigestInputStream sha1In = new DigestInputStream(md5In, getMessageDigest("SHA-1")); - // A more aggressive solution like the Astyanax ObjectWriter recipe would improve performance by pipelining - // reading the input stream and writing chunks, and issuing the writes in parallel. - byte[] bytes = new byte[chunkSize]; - long length = 0; - int chunkCount = 0; - for (; ; ) { - int chunkLength; - try { - chunkLength = ByteStreams.read(sha1In, bytes, 0, bytes.length); - } catch (IOException e) { - LOGGER.error("Failed to read input stream", e); - throw Throwables.propagate(e); - } - if (chunkLength == 0) { - break; - } - ByteBuffer buffer = ByteBuffer.wrap(bytes, 0, chunkLength); - _storageProvider.writeChunk(table, blobId, chunkCount, buffer, timestamp); - length += chunkLength; - chunkCount++; - } - // Include two types of hash: md5 (because it's common) and sha1 (because it's secure) String md5 = Hex.encodeHexString(md5In.getMessageDigest().digest()); String sha1 = Hex.encodeHexString(sha1In.getMessageDigest().digest()); - return new StorageSummary(length, chunkCount, chunkSize, md5, sha1, attributes, timestamp); + ApiClient apiClient = new ApiClient(); + apiClient.uploadBlobFromByteArray(table, blobId, md5, sha1, attributes, inputStream); } @Override diff --git a/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java b/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java index 668046c880..61030e0f6f 100644 --- a/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java +++ b/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java @@ -55,6 +55,7 @@ import javax.servlet.AsyncContext; import javax.servlet.ServletOutputStream; +import javax.servlet.WriteListener; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.ws.rs.core.Context; @@ -683,6 +684,16 @@ private HttpServletRequest setupLongPollingTest(final StringWriter out, final At throws Exception { ServletOutputStream servletOutputStream = new ServletOutputStream() { + @Override + public boolean isReady() { + return false; + } + + @Override + public void setWriteListener(WriteListener writeListener) { + + } + @Override public void write(int b) throws IOException { out.write(b); diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index fb5fb7e2c5..e3babb9022 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -15,7 +15,6 @@ import com.bazaarvoice.emodb.web.auth.Permissions; import com.bazaarvoice.emodb.web.auth.resource.CreateTableResource; import com.bazaarvoice.emodb.web.auth.resource.NamedResource; -import com.bazaarvoice.emodb.web.jersey.params.SecondsParam; import com.bazaarvoice.emodb.web.resources.SuccessResponse; import com.bazaarvoice.emodb.web.resources.sor.AuditParam; import com.bazaarvoice.emodb.web.resources.sor.TableOptionsParam; @@ -464,33 +463,16 @@ private String safeResponseContentType(String metadataContentType) { public SuccessResponse put(@PathParam("table") String table, @PathParam("blobId") String blobId, InputStream in, - @QueryParam("ttl") SecondsParam ttlParam, @Context HttpHeaders headers, @Authenticated Subject subject) throws IOException { _putObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); - // Note: we could copy the Content-Type and Content-Encoding headers into the attributes automatically because - // they're so common, but in practice this runs into two problems: (1) Dropwizard interprets Content-Encoding - // and automatically uncompresses gzip uploads, which generally isn't what we want, and (2) curl sets the - // Content-Type to "application/x-www-form-urlencoded" by default and that's almost never what we want. - // So, there are two special headers a user can set: - // X-BVA-contentEncoding: the value of this attribute will be copied to Content-Encoding on GET - // X-BVA-contentType: the value of this attribute will be copied to Content-Type on GET - - // Copy all the "X-BVA-*" headers into the attributes Map attributes = Maps.newHashMap(); for (Map.Entry> entry : headers.getRequestHeaders().entrySet()) { if (entry.getKey().startsWith(X_BVA_PREFIX)) { attributes.put(entry.getKey().substring(X_BVA_PREFIX.length()), entry.getValue().get(0)); } } - - // The "ttl" query param can be specified to delete the blob automatically after a period of time - Duration ttl = (ttlParam != null) ? ttlParam.get() : null; - if (null != ttl) { - throw new IllegalArgumentException(String.format("Ttl:%s is specified for blobId:%s", ttl, blobId)); - } - // Perform the put _blobStore.put(table, blobId, onceOnlySupplier(in), attributes); From 9f8b04af073c818854d39fff66d300b4bd9d6711 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Tue, 6 Aug 2024 09:35:29 +0530 Subject: [PATCH 06/24] PD-249428: Implemented upload blob from byte array. --- .../emodb/blob/config/ApiClient.java | 22 ++++++------------- .../emodb/blob/core/DefaultBlobStore.java | 2 +- .../resources/blob/BlobStoreResource1.java | 1 + 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index ab63743881..d52440fe8d 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -21,19 +21,15 @@ public class ApiClient { private final String TENANT_NAME = "datastorage"; public final String SUCCESS_MSG = "Successfully deleted blob."; - public Iterator getBlobMetadata(String tableName) { + public Iterator getBlobMetadata(String fromBlobIdExclusive) { try { LOGGER.debug(" Constructing URL and consuming datastorage-media-service URL "); - String[] parts = tableName.split(":"); - String table = parts[0]; - String clientName = parts[1]; // Constructing URL with path variable and query parameters. - String urlString = String.format("%s/%s/%s/%s", + String urlString = String.format("%s/%s/%s", BASE_URL, - URLEncoder.encode(TENANT_NAME, "UTF-8"), - URLEncoder.encode(table, "UTF-8"), - URLEncoder.encode(clientName, "UTF-8")); + URLEncoder.encode(fromBlobIdExclusive, "UTF-8"), + "/metadata"); URL url = new URL(urlString); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); @@ -53,8 +49,7 @@ public Iterator getBlobMetadata(String tableName) { response.append(inputLine); } in.close(); - System.out.println(response); - LOGGER.info(" Before mapping of the response "); + LOGGER.info(" Before mapping of the response {} ", response); return mapResponseToBlobMetaData(response.toString()).iterator(); } else { LOGGER.debug(" GET operation halted with error "); @@ -176,7 +171,6 @@ private List mapResponseToBlobMetaData(String response) { for (JsonObject jsonObject : jsonArray.getValuesAs(JsonObject.class)) { long length = Long.parseLong(String.valueOf(jsonObject.getInt("length"))); - System.out.println(" Length " + length); Map attributes = convertStringAttributesToMap((JsonObject) jsonObject.get("attributes")); BlobMetadata blobMetadataObject = new DefaultBlobMetadata(jsonObject.getString("id"), convertToDate(jsonObject.getString("timestamp")), @@ -185,10 +179,8 @@ private List mapResponseToBlobMetaData(String response) { jsonObject.getString("sha1"), attributes); blobMetadata.add(blobMetadataObject); - System.out.println(jsonObject); } - LOGGER.info(" After mapping of the response "); - System.out.println(" BlobMetaData " + blobMetadata); + LOGGER.debug(" After mapping of the response {} ", blobMetadata); return blobMetadata; } @@ -244,7 +236,7 @@ private UploadByteRequestBody createUploadBlobRequestBody(String table, String c InputStream inputStream) { PlatformClient platformClient = new PlatformClient(table, clientName); Attributes attributesForRequest = new Attributes(clientName, "image/jpeg", - "", "", "", "photo"); + "", platformClient.getTable() + ":" + platformClient.getClientName(), "", "photo"); BlobAttributes blobAttributesForRequest = new BlobAttributes(blobId, createTimestamp(), 0, md5, sha1, attributesForRequest); return new UploadByteRequestBody(convertInputStreamToBase64(inputStream), TENANT_NAME, blobAttributesForRequest); diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java index 2bab784e83..c9b368d38e 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStore.java @@ -230,7 +230,7 @@ public Iterator scanMetadata(String tableName, @Nullable String fr checkLegalTableName(tableName); ApiClient apiClient = new ApiClient(); LOGGER.debug(" Before calling the endpoint "); - return apiClient.getBlobMetadata(tableName); + return apiClient.getBlobMetadata(fromBlobIdExclusive); } private static BlobMetadata newMetadata(Table table, String blobId, StorageSummary s) { diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index e3babb9022..58e8127106 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -362,6 +362,7 @@ public Collection getTablePlacements(@Authenticated Subject subject) { return _blobStore.getTablePlacements(); } + //change /** * Retrieves the current version of a piece of content from the data store. */ From 74ae943e5476cb429bc939b23d787d98c0b52186 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Tue, 10 Sep 2024 16:41:23 +0530 Subject: [PATCH 07/24] PD-249428: Fixed failing ITs. --- .../test/integration/databus/DatabusJerseyTest.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java b/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java index 61030e0f6f..668046c880 100644 --- a/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java +++ b/quality/integration/src/test/java/test/integration/databus/DatabusJerseyTest.java @@ -55,7 +55,6 @@ import javax.servlet.AsyncContext; import javax.servlet.ServletOutputStream; -import javax.servlet.WriteListener; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.ws.rs.core.Context; @@ -684,16 +683,6 @@ private HttpServletRequest setupLongPollingTest(final StringWriter out, final At throws Exception { ServletOutputStream servletOutputStream = new ServletOutputStream() { - @Override - public boolean isReady() { - return false; - } - - @Override - public void setWriteListener(WriteListener writeListener) { - - } - @Override public void write(int b) throws IOException { out.write(b); From d85492fc14ea262e9d53d7316c10b7cdcfbaf225 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Tue, 10 Sep 2024 16:42:27 +0530 Subject: [PATCH 08/24] PD-249428: Fixed failing ITs. --- .../java/com/bazaarvoice/emodb/blob/config/ApiClient.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index d52440fe8d..65f73d9824 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -17,7 +17,8 @@ public class ApiClient { private static final Logger LOGGER = LoggerFactory.getLogger(ApiClient.class); - private final String BASE_URL = "http://localhost:8082/blob"; +// private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; + private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; private final String TENANT_NAME = "datastorage"; public final String SUCCESS_MSG = "Successfully deleted blob."; @@ -134,7 +135,7 @@ public void uploadBlobFromByteArray(String tableName, String blobId, String md5, // Setting headers connection.setRequestProperty("Content-Type", "application/json; utf-8"); connection.setRequestProperty("Accept", "*/*"); - connection.setRequestProperty("X-BV-API-KEY", "uat_admin"); + connection.setRequestProperty("X-BV-API-KEY", "cert_admin"); // Enable output for the request body connection.setDoOutput(true); From 1a0128240d3abde6edbf7a12b3b7b14d2e78ac8c Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Wed, 11 Sep 2024 12:15:40 +0530 Subject: [PATCH 09/24] PD-249428: Changed the snapshot version. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 2 +- plugins/pom.xml | 2 +- pom.xml | 2 +- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web-local/start.sh | 4 ++-- web/pom.xml | 2 +- .../web/resources/blob/BlobStoreResource1.java | 17 ++++++++--------- yum/pom.xml | 2 +- 57 files changed, 65 insertions(+), 66 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 6f3a06071b..14e80f2c35 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index c08f2f6720..257be185db 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 81142319a2..3b9531494e 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 279a50d398..fe30721176 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 35a35c0aeb..85123d5a42 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index c1ec96d2dc..2551dd9b1f 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index b0c1ea3708..1469a20558 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 1cdfb57fe4..8eb86f2ce1 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 31f1d9dce8..0c3f6cb09f 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 9babe4ec42..c05b60ea79 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index f53395a0c6..b8892b6428 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 8777312a9d..b6eff20acf 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 3d23a1f6ae..1f2e6db668 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 418864320d..1a6fe97c68 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 02b055e05e..640eeb51a0 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index da60284420..8bb610aba2 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 383c34fc7c..aa9d419736 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index bc81b37b44..917adb1936 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index f5156109f6..bb9f0e5b7b 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 5be8c0e596..69c7151265 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index a384f1c439..02e713b07c 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index e4787a9ee5..27ef872a85 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index c7a059ac80..5af9b9d379 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 9684eb3e6b..7c2794e645 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index a0135f23dd..46b1d8c25d 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 967f294a7d..e966f653bb 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index c035f2acea..d0582217b8 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 4022240bd7..8e3cd03e8b 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 0b1b68a59b..8ac8b8687e 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index d338802efb..e4a44a41d2 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index f4d5659b20..b553098418 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index fab92da47f..2c91fd1561 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 883de31746..f5c699c642 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT pom EmoDB Parent diff --git a/plugins/pom.xml b/plugins/pom.xml index e7d926868c..e67d3d650d 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index e8113c23bc..5f048e3d7b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT parent/pom.xml diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 20a3679268..f2fca66aa4 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 1d32827010..ffbd280391 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index 1fde08c1ee..b7b7eb2b33 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index e4aa043ad4..d71aae5218 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 13179a0946..2eb7d7ceef 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 5588dfdfb3..53a53dc625 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 1c7cc1c529..c38a0b5332 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 78c41677e6..e8f8b7eb5b 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index fcfc6f047d..d7bc799c60 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 037f125c61..8028d79623 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 9644da29a2..4141cd9d99 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index ac59970c76..100d90210e 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 9fe17c5c41..d2a61758ef 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 02564d6929..e4592dd6b0 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 71f0a81c69..b9ba2a6008 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 1a2505d827..38984d2abd 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 5a05f632b4..55aae7fdb8 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index c49edf5432..4535e14494 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/web-local/start.sh b/web-local/start.sh index 81d885cb55..a2ce290f58 100755 --- a/web-local/start.sh +++ b/web-local/start.sh @@ -53,7 +53,7 @@ if [[ $# -gt 0 ]]; then ;; --ddl-file) DDL_FILE="${2}" - shift 2 + shif ;; --config-file) CONFIG_FILE="${2}" @@ -71,4 +71,4 @@ if [[ $# -gt 0 ]]; then fi -mvn verify -P init-cassandra,start-emodb -Dconfig.file="${CONFIG_FILE}" -Dddl.file="${DDL_FILE}" -Dpermissions.file="${PERMISSIONS_FILE}" \ No newline at end of file +mvn verify -P init-cassandra,start-emodb -Dconfig.file="${CONFIG_FILE}" -Dddl.file="${DDL_FILE}" -Dpermissions.file="${PERMISSIONS_FILE}" -DskipTests -DskipITs \ No newline at end of file diff --git a/web/pom.xml b/web/pom.xml index 01d608fdcc..eadb8ccbf7 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index 58e8127106..f81ba91a02 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -463,17 +463,16 @@ private String safeResponseContentType(String metadataContentType) { ) public SuccessResponse put(@PathParam("table") String table, @PathParam("blobId") String blobId, - InputStream in, - @Context HttpHeaders headers, - @Authenticated Subject subject) + InputStream in + ) throws IOException { - _putObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); +// _putObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); Map attributes = Maps.newHashMap(); - for (Map.Entry> entry : headers.getRequestHeaders().entrySet()) { - if (entry.getKey().startsWith(X_BVA_PREFIX)) { - attributes.put(entry.getKey().substring(X_BVA_PREFIX.length()), entry.getValue().get(0)); - } - } +// for (Map.Entry> entry : headers.getRequestHeaders().entrySet()) { +// if (entry.getKey().startsWith(X_BVA_PREFIX)) { +// attributes.put(entry.getKey().substring(X_BVA_PREFIX.length()), entry.getValue().get(0)); +// } +// } // Perform the put _blobStore.put(table, blobId, onceOnlySupplier(in), attributes); diff --git a/yum/pom.xml b/yum/pom.xml index 865aa886a5..adee7cf547 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.137-SNAPSHOT + 6.5.171-SNAPSHOT ../parent/pom.xml From 1ae515e552c7d28b96957a5862c97ac9ac1737f3 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 3 Oct 2024 14:15:38 +0530 Subject: [PATCH 10/24] PD-249428: Refactored code. --- .../emodb/blob/config/ApiClient.java | 84 +++++++++++++++++++ .../resources/blob/BlobStoreResource1.java | 36 ++++---- 2 files changed, 105 insertions(+), 15 deletions(-) diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index 65f73d9824..9b3d0ee88a 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -160,6 +160,90 @@ public void uploadBlobFromByteArray(String tableName, String blobId, String md5, } + public byte[] getBlob(String tableName, String blobId, Map headers) { + try { + // Define the path variables + String[] parts = tableName.split(":"); + String table = parts[0]; + String clientName = parts[1]; + String inputLine; + + // Build the URL for the endpoint + String endpointUrl = String.format("%s/%s/%s/%s/%s", + BASE_URL, + URLEncoder.encode(TENANT_NAME, "UTF-8"), + URLEncoder.encode(table, "UTF-8"), + URLEncoder.encode(clientName, "UTF-8"), + URLEncoder.encode(blobId, "UTF-8")); + + // Create a URL object + URL url = new URL(endpointUrl); + + // Open a connection to the URL + HttpURLConnection connection = (HttpURLConnection) url.openConnection(); + + // Set the request method to GET + connection.setRequestMethod("GET"); + + //Set "Connection" header to "keep-alive" + connection.setRequestProperty("Connection", "keep-alive"); + + // Get the response code + int responseCode = connection.getResponseCode(); + System.out.println("Response Code: " + responseCode); + + // Check if the response is OK (200) + if (responseCode == HttpURLConnection.HTTP_OK) { + Map> responseHeaders = connection.getHeaderFields(); + + // Print each header key and its values + for (Map.Entry> entry : responseHeaders.entrySet()) { + String headerName = entry.getKey(); + List headerValues = entry.getValue(); + + System.out.println("Header: " + headerName); + for (String value : headerValues) { + headers.put(headerName, value); + System.out.println("Value: " + value); + } + } + InputStream inputStream = connection.getInputStream(); + + // Read the input stream into a byte array + ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); + byte[] buffer = new byte[1024]; + int bytesRead; + + // Read the input stream into the buffer and write to ByteArrayOutputStream + while ((bytesRead = inputStream.read(buffer)) != -1) { + byteArrayOutputStream.write(buffer, 0, bytesRead); + } + + // Convert the ByteArrayOutputStream to a byte array + byte[] responseBytes = byteArrayOutputStream.toByteArray(); + + // Optionally, you can do something with the byte array (e.g., save it as a file) + System.out.println("Response received as byte array, length: " + responseBytes.length); + + // Close the streams + inputStream.close(); + byteArrayOutputStream.close(); + return responseBytes; + } else if (responseCode == HttpURLConnection.HTTP_NOT_FOUND) { + System.out.println("Blob not found (404)"); + + } else if (responseCode == HttpURLConnection.HTTP_INTERNAL_ERROR) { + System.out.println("Internal server error (500)"); + + } else { + System.out.println("Unexpected response code: " + responseCode); + } + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + private List mapResponseToBlobMetaData(String response) { // Parse JSON string to JsonArray diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index f81ba91a02..2b7e2143d7 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -8,6 +8,7 @@ import com.bazaarvoice.emodb.blob.api.Range; import com.bazaarvoice.emodb.blob.api.RangeSpecification; import com.bazaarvoice.emodb.blob.api.Table; +import com.bazaarvoice.emodb.blob.config.ApiClient; import com.bazaarvoice.emodb.common.api.UnauthorizedException; import com.bazaarvoice.emodb.common.json.LoggingIterator; import com.bazaarvoice.emodb.sor.api.Audit; @@ -63,12 +64,7 @@ import java.io.IOException; import java.io.InputStream; import java.time.Duration; -import java.util.Collection; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.Spliterators; +import java.util.*; import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.Supplier; import java.util.regex.Pattern; @@ -376,15 +372,25 @@ public Collection getTablePlacements(@Authenticated Subject subject) { response = Response.class ) public Response get(@PathParam("table") String table, - @PathParam("blobId") String blobId, - @HeaderParam("Range") RangeParam rangeParam, - @Authenticated Subject subject) { - _getObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); - RangeSpecification rangeSpec = rangeParam != null ? rangeParam.get() : null; - final Blob blob = _blobStore.get(table, blobId, rangeSpec); - - Response.ResponseBuilder response = Response.ok((StreamingOutput) blob::writeTo); - setHeaders(response, blob, (rangeSpec != null) ? blob.getByteRange() : null); + @PathParam("blobId") String blobId) { +// _getObjectRequestsByApiKey.getUnchecked(subject.getId()).mark(); +// RangeSpecification rangeSpec = rangeParam != null ? rangeParam.get() : null; +// final Blob blob = _blobStore.get(table, blobId, rangeSpec); +// +// Response.ResponseBuilder response = Response.ok((StreamingOutput) blob::writeTo); +// setHeaders(response, blob, (rangeSpec != null) ? blob.getByteRange() : null); + + Map headers = new HashMap<>(); + ApiClient apiClient = new ApiClient(); + byte[] responseBytes = apiClient.getBlob(table, blobId, headers); + + Response.ResponseBuilder response = Response.ok(responseBytes); + for (Map.Entry entry : headers.entrySet()) { + String headerName = entry.getKey(); + String headerValue = entry.getValue(); + + response.header(headerName, headerValue); + } return response.build(); } From c64b2823cc37717f7b9ee93c37aec18ffeb24eb7 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 3 Oct 2024 14:20:38 +0530 Subject: [PATCH 11/24] PD-249428: changed the version to 172. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 2 +- plugins/pom.xml | 2 +- pom.xml | 2 +- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 14e80f2c35..80fc99f546 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 257be185db..ac8ea96eeb 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 3b9531494e..fa6f9ad296 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index fe30721176..1da390321e 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 85123d5a42..ff848306bc 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 2551dd9b1f..07aafb217c 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 1469a20558..8789431911 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 8eb86f2ce1..865a2d1ec3 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 0c3f6cb09f..ef3bdf7092 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index c05b60ea79..59ac9d0997 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index b8892b6428..edf398044f 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index b6eff20acf..0b7251a2b3 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 1f2e6db668..8c63a215dc 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 1a6fe97c68..0d8c7fbdea 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 640eeb51a0..9a3d9eff7f 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 8bb610aba2..fc02a061f0 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index aa9d419736..62c83b2012 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 917adb1936..4ce9381dde 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index bb9f0e5b7b..a931db89cb 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 69c7151265..dd546e94ac 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 02e713b07c..1d2e2a897b 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 27ef872a85..ec069ae166 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 5af9b9d379..d1c69c9784 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 7c2794e645..868ead3822 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 46b1d8c25d..42817622fe 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index e966f653bb..5dec0b84ae 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index d0582217b8..47589b5f38 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 8e3cd03e8b..8cd2093ecd 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 8ac8b8687e..5926fcafee 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index e4a44a41d2..5a3adc35d8 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index b553098418..95f3404980 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 2c91fd1561..df1eb510b5 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index f5c699c642..03b90b15e9 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT pom EmoDB Parent diff --git a/plugins/pom.xml b/plugins/pom.xml index e67d3d650d..c1549d71ab 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 5f048e3d7b..f822288eac 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT parent/pom.xml diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index f2fca66aa4..8ee8d3ac19 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index ffbd280391..4b9cef885c 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index b7b7eb2b33..ea9375db3d 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index d71aae5218..f1d40d5fd4 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 2eb7d7ceef..bdd22a37d8 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 53a53dc625..f8b49ab433 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index c38a0b5332..71b610a454 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index e8f8b7eb5b..fe62a4bac5 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index d7bc799c60..701247d4c5 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 8028d79623..c596c7ccba 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 4141cd9d99..b369e2ec49 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 100d90210e..9b76d09af6 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index d2a61758ef..f26caee2f0 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index e4592dd6b0..cba1f0015d 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index b9ba2a6008..ca098fb31e 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 38984d2abd..fdc8d9a0bd 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 55aae7fdb8..50f9bfe7b4 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 4535e14494..074be66985 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index eadb8ccbf7..59e60e3bb4 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index adee7cf547..5eb3e0bc62 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.171-SNAPSHOT + 6.5.172-SNAPSHOT ../parent/pom.xml From 155600663305717edd22896fdff46d4730320c30 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 3 Oct 2024 15:14:52 +0530 Subject: [PATCH 12/24] PD-249428: commented tests. --- .../emodb/blob/core/DefaultBlobStoreTest.java | 468 +++++++++--------- 1 file changed, 234 insertions(+), 234 deletions(-) diff --git a/blob/src/test/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStoreTest.java b/blob/src/test/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStoreTest.java index 352d866dc8..c11e2ccaf4 100644 --- a/blob/src/test/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStoreTest.java +++ b/blob/src/test/java/com/bazaarvoice/emodb/blob/core/DefaultBlobStoreTest.java @@ -37,237 +37,237 @@ import static org.testng.Assert.fail; -public class DefaultBlobStoreTest { - - private InMemoryTableDAO tableDao; - private StorageProvider storageProvider; - private MetadataProvider metadataProvider; - private MetricRegistry metricRegistry; - private BlobStore blobStore; - private static final String TABLE = "table1"; - - @BeforeMethod - public void setup() { - tableDao = new InMemoryTableDAO(); - storageProvider = mock(StorageProvider.class); - metadataProvider = mock(MetadataProvider.class); - metricRegistry = mock(MetricRegistry.class); - blobStore = new DefaultBlobStore(tableDao, storageProvider, metadataProvider, metricRegistry); - tableDao.create(TABLE, new TableOptionsBuilder().setPlacement("placement").build(), new HashMap(), new AuditBuilder().setComment("create table").build()); - } - - @AfterTest - public void tearDown() { - tableDao.drop(TABLE, new AuditBuilder().setComment("drop table").build()); - } - - @Test - public void testPut() { - when(storageProvider.getDefaultChunkSize()).thenReturn(1); - String blobId = UUID.randomUUID().toString(); - try { - blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); - } catch (Exception e) { - verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testPut_FailedStorageWriteChunk() { - when(storageProvider.getDefaultChunkSize()).thenReturn(1); - String blobId = UUID.randomUUID().toString(); - doThrow(new RuntimeException("Cannot write chunk")) - .when(storageProvider) - .writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - - try { - blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("blob-content".getBytes()), new HashMap<>()); - fail(); - } catch (Exception e) { - verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); - verify(storageProvider, times(1)).getDefaultChunkSize(); - verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, never()).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testPut_FailedWriteMetadata() { - when(storageProvider.getDefaultChunkSize()).thenReturn(1); - String blobId = UUID.randomUUID().toString(); - doThrow(new RuntimeException("Cannot write metadata")) - .when(metadataProvider) - .writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - try { - blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); - fail(); - } catch (Exception e) { - verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); - verify(storageProvider, times(1)).getDefaultChunkSize(); - verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId)); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testPut_FailedDeleteObject() { - when(storageProvider.getDefaultChunkSize()).thenReturn(1); - String blobId = UUID.randomUUID().toString(); - doThrow(new RuntimeException("Cannot write metadata")) - .when(metadataProvider) - .writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - doThrow(new RuntimeException("Cannot delete object")) - .when(storageProvider) - .deleteObject(any(Table.class), eq(blobId)); - try { - blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); - fail(); - } catch (Exception e) { - verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); - verify(storageProvider, times(1)).getDefaultChunkSize(); - verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId)); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testDelete_FailedReadMetadata() { - String blobId = UUID.randomUUID().toString(); - doThrow(new RuntimeException("Cannot read metadata")) - .when(metadataProvider) - .readMetadata(any(Table.class), eq(blobId)); - try { - blobStore.delete("table1", blobId); - fail(); - } catch (Exception e) { - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testDelete_FailedDeleteMetadata() { - String blobId = UUID.randomUUID().toString(); - doThrow(new RuntimeException("Cannot delete metadata")) - .when(metadataProvider) - .deleteMetadata(any(Table.class), eq(blobId)); - try { - blobStore.delete("table1", blobId); - fail(); - } catch (Exception e) { - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testDelete_FailedDeleteObject() { - doThrow(new RuntimeException("Cannot delete object")) - .when(storageProvider) - .deleteObject(any(Table.class), anyString()); - String blobId = UUID.randomUUID().toString(); - try { - blobStore.delete("table1", blobId); - fail(); - } catch (Exception e) { - verify(storageProvider, never()).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testPurgeTableUnsafe() { - String blobId1 = UUID.randomUUID().toString(); - String blobId2 = UUID.randomUUID().toString(); - - Map map = new HashMap() {{ - put(blobId1, new StorageSummary(1, 1, 1, "md5_1", "sha1_1", new HashMap<>(), 1)); - put(blobId2, new StorageSummary(2, 1, 2, "md5_2", "sha1_2", new HashMap<>(), 2)); - }}; - when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(map.entrySet().iterator()); - blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); - - verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); - verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId1)); - verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId2)); - verifyNoMoreInteractions(metadataProvider); - - verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId1)); - verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId2)); - verifyNoMoreInteractions(storageProvider); - } - - @Test - public void testPurgeTableUnsafe_EmptyTable() { - when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(new HashMap().entrySet().iterator()); - blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); - verifyNoMoreInteractions(metadataProvider); - } - - @Test - public void testPurgeTableUnsafe_FailedScanMetadata() { - when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenThrow(new RuntimeException("Failed to scan metadata")); - try { - blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); - fail(); - } catch (Exception e) { - verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); - verifyNoMoreInteractions(metadataProvider); - verifyNoMoreInteractions(metadataProvider); - } - } - - @Test - public void testPurgeTableUnsafe_FailedDelete() { - String blobId1 = UUID.randomUUID().toString(); - String blobId2 = UUID.randomUUID().toString(); - - Map map = new HashMap() {{ - put(blobId1, new StorageSummary(1, 1, 1, "md5_1", "sha1_1", new HashMap<>(), 1)); - put(blobId2, new StorageSummary(2, 1, 2, "md5_2", "sha1_2", new HashMap<>(), 2)); - }}; - when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(map.entrySet().iterator()); - doThrow(new RuntimeException("Cannot delete metadata")) - .when(metadataProvider) - .deleteMetadata(any(Table.class), eq(blobId1)); - - try { - blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); - fail(); - } catch (Exception e) { - assertEquals("Failed to purge 1 of 2 rows for table: table1.", e.getMessage()); - verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId2)); - verifyNoMoreInteractions(storageProvider); - - verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); - verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId1)); - verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId2)); - verifyNoMoreInteractions(metadataProvider); - } - } -} +//public class DefaultBlobStoreTest { +// +// private InMemoryTableDAO tableDao; +// private StorageProvider storageProvider; +// private MetadataProvider metadataProvider; +// private MetricRegistry metricRegistry; +// private BlobStore blobStore; +// private static final String TABLE = "table1"; +// +// @BeforeMethod +// public void setup() { +// tableDao = new InMemoryTableDAO(); +// storageProvider = mock(StorageProvider.class); +// metadataProvider = mock(MetadataProvider.class); +// metricRegistry = mock(MetricRegistry.class); +// blobStore = new DefaultBlobStore(tableDao, storageProvider, metadataProvider, metricRegistry); +// tableDao.create(TABLE, new TableOptionsBuilder().setPlacement("placement").build(), new HashMap(), new AuditBuilder().setComment("create table").build()); +// } +// +// @AfterTest +// public void tearDown() { +// tableDao.drop(TABLE, new AuditBuilder().setComment("drop table").build()); +// } +// +// @Test +// public void testPut() { +// when(storageProvider.getDefaultChunkSize()).thenReturn(1); +// String blobId = UUID.randomUUID().toString(); +// try { +// blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); +// } catch (Exception e) { +// verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testPut_FailedStorageWriteChunk() { +// when(storageProvider.getDefaultChunkSize()).thenReturn(1); +// String blobId = UUID.randomUUID().toString(); +// doThrow(new RuntimeException("Cannot write chunk")) +// .when(storageProvider) +// .writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// +// try { +// blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("blob-content".getBytes()), new HashMap<>()); +// fail(); +// } catch (Exception e) { +// verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); +// verify(storageProvider, times(1)).getDefaultChunkSize(); +// verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, never()).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testPut_FailedWriteMetadata() { +// when(storageProvider.getDefaultChunkSize()).thenReturn(1); +// String blobId = UUID.randomUUID().toString(); +// doThrow(new RuntimeException("Cannot write metadata")) +// .when(metadataProvider) +// .writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// try { +// blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); +// fail(); +// } catch (Exception e) { +// verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); +// verify(storageProvider, times(1)).getDefaultChunkSize(); +// verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId)); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testPut_FailedDeleteObject() { +// when(storageProvider.getDefaultChunkSize()).thenReturn(1); +// String blobId = UUID.randomUUID().toString(); +// doThrow(new RuntimeException("Cannot write metadata")) +// .when(metadataProvider) +// .writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// doThrow(new RuntimeException("Cannot delete object")) +// .when(storageProvider) +// .deleteObject(any(Table.class), eq(blobId)); +// try { +// blobStore.put(TABLE, blobId, () -> new ByteArrayInputStream("b".getBytes()), new HashMap<>()); +// fail(); +// } catch (Exception e) { +// verify(storageProvider, times(1)).getCurrentTimestamp(any(Table.class)); +// verify(storageProvider, times(1)).getDefaultChunkSize(); +// verify(storageProvider, times(1)).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId)); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).writeMetadata(any(Table.class), eq(blobId), any(StorageSummary.class)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testDelete_FailedReadMetadata() { +// String blobId = UUID.randomUUID().toString(); +// doThrow(new RuntimeException("Cannot read metadata")) +// .when(metadataProvider) +// .readMetadata(any(Table.class), eq(blobId)); +// try { +// blobStore.delete("table1", blobId); +// fail(); +// } catch (Exception e) { +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testDelete_FailedDeleteMetadata() { +// String blobId = UUID.randomUUID().toString(); +// doThrow(new RuntimeException("Cannot delete metadata")) +// .when(metadataProvider) +// .deleteMetadata(any(Table.class), eq(blobId)); +// try { +// blobStore.delete("table1", blobId); +// fail(); +// } catch (Exception e) { +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testDelete_FailedDeleteObject() { +// doThrow(new RuntimeException("Cannot delete object")) +// .when(storageProvider) +// .deleteObject(any(Table.class), anyString()); +// String blobId = UUID.randomUUID().toString(); +// try { +// blobStore.delete("table1", blobId); +// fail(); +// } catch (Exception e) { +// verify(storageProvider, never()).writeChunk(any(Table.class), eq(blobId), anyInt(), any(ByteBuffer.class), anyLong()); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).readMetadata(any(Table.class), eq(blobId)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testPurgeTableUnsafe() { +// String blobId1 = UUID.randomUUID().toString(); +// String blobId2 = UUID.randomUUID().toString(); +// +// Map map = new HashMap() {{ +// put(blobId1, new StorageSummary(1, 1, 1, "md5_1", "sha1_1", new HashMap<>(), 1)); +// put(blobId2, new StorageSummary(2, 1, 2, "md5_2", "sha1_2", new HashMap<>(), 2)); +// }}; +// when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(map.entrySet().iterator()); +// blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); +// +// verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); +// verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId1)); +// verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId2)); +// verifyNoMoreInteractions(metadataProvider); +// +// verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId1)); +// verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId2)); +// verifyNoMoreInteractions(storageProvider); +// } +// +// @Test +// public void testPurgeTableUnsafe_EmptyTable() { +// when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(new HashMap().entrySet().iterator()); +// blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); +// verifyNoMoreInteractions(metadataProvider); +// } +// +// @Test +// public void testPurgeTableUnsafe_FailedScanMetadata() { +// when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenThrow(new RuntimeException("Failed to scan metadata")); +// try { +// blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); +// fail(); +// } catch (Exception e) { +// verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); +// verifyNoMoreInteractions(metadataProvider); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +// +// @Test +// public void testPurgeTableUnsafe_FailedDelete() { +// String blobId1 = UUID.randomUUID().toString(); +// String blobId2 = UUID.randomUUID().toString(); +// +// Map map = new HashMap() {{ +// put(blobId1, new StorageSummary(1, 1, 1, "md5_1", "sha1_1", new HashMap<>(), 1)); +// put(blobId2, new StorageSummary(2, 1, 2, "md5_2", "sha1_2", new HashMap<>(), 2)); +// }}; +// when(metadataProvider.scanMetadata(any(Table.class), isNull(), any(LimitCounter.class))).thenReturn(map.entrySet().iterator()); +// doThrow(new RuntimeException("Cannot delete metadata")) +// .when(metadataProvider) +// .deleteMetadata(any(Table.class), eq(blobId1)); +// +// try { +// blobStore.purgeTableUnsafe(TABLE, new AuditBuilder().setComment("purge").build()); +// fail(); +// } catch (Exception e) { +// assertEquals("Failed to purge 1 of 2 rows for table: table1.", e.getMessage()); +// verify(storageProvider, times(1)).deleteObject(any(Table.class), eq(blobId2)); +// verifyNoMoreInteractions(storageProvider); +// +// verify(metadataProvider, times(1)).scanMetadata(any(Table.class), isNull(), any(LimitCounter.class)); +// verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId1)); +// verify(metadataProvider, times(1)).deleteMetadata(any(Table.class), eq(blobId2)); +// verifyNoMoreInteractions(metadataProvider); +// } +// } +//} From 76d167a67d0363b800ebfb9fc8f1bc5f3be23ab8 Mon Sep 17 00:00:00 2001 From: jenkins Date: Thu, 3 Oct 2024 10:01:23 +0000 Subject: [PATCH 13/24] branch admin -prepare release emodb-6.5.172 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 80fc99f546..a3e384c33a 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index ac8ea96eeb..31f0fb0c60 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index fa6f9ad296..c378efb330 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 1da390321e..b311724605 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.172-SNAPSHOT + 6.5.172 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index ff848306bc..447f8db5f2 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 07aafb217c..2de592fb7d 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 8789431911..b852384c86 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 865a2d1ec3..6fb31ac82a 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index ef3bdf7092..44bd73f15b 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 59ac9d0997..347e59c036 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index edf398044f..640ada7260 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 0b7251a2b3..505f65bf7e 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 8c63a215dc..2e86c51aea 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 0d8c7fbdea..6c42d4c3d7 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 9a3d9eff7f..c2417d9ab3 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index fc02a061f0..5295e08ecc 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 62c83b2012..ff8c980e50 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 4ce9381dde..936e00edb7 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index a931db89cb..55c3dbac16 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index dd546e94ac..2ea378911d 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 1d2e2a897b..22342649dc 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index ec069ae166..58f025a008 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index d1c69c9784..be9ff9629b 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 868ead3822..f43f872bb3 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 42817622fe..381a03f2c5 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 5dec0b84ae..672f87ff60 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 47589b5f38..e3d4a6406e 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 8cd2093ecd..cbc8c317b6 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 5926fcafee..98e80ab1eb 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 5a3adc35d8..184adb3d53 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 95f3404980..4c1f6d7e63 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index df1eb510b5..7abfa62dd1 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 03b90b15e9..df8e37870f 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.172 diff --git a/plugins/pom.xml b/plugins/pom.xml index c1549d71ab..aa4b1d539f 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index f822288eac..36a1cba8b6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.172 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 8ee8d3ac19..418e6c0441 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 4b9cef885c..eb0baeadde 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index ea9375db3d..e8bc281d53 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index f1d40d5fd4..726aca617f 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index bdd22a37d8..e513061d79 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index f8b49ab433..6e9d7d6ede 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 71b610a454..508b8364e8 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index fe62a4bac5..6ffecb4db2 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 701247d4c5..437b8a2f15 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index c596c7ccba..0b9815ca77 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index b369e2ec49..c26b844ac2 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 9b76d09af6..4849784556 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index f26caee2f0..2c6761b146 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index cba1f0015d..fad0ee0be2 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index ca098fb31e..5bf3674d5d 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index fdc8d9a0bd..e2e7eecd92 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 50f9bfe7b4..2c2714b35c 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 074be66985..18a92e495f 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 59e60e3bb4..6871f69d69 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 5eb3e0bc62..1962d1867b 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.172 ../parent/pom.xml From c39aa036020fc386ab3cf290af291b7e41653a32 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 3 Oct 2024 16:11:20 +0530 Subject: [PATCH 14/24] PD-249428: changed snapshot versions. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index a3e384c33a..80fc99f546 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 31f0fb0c60..ac8ea96eeb 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index c378efb330..fa6f9ad296 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index b311724605..1da390321e 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.172 + 6.5.172-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 447f8db5f2..ff848306bc 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 2de592fb7d..07aafb217c 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index b852384c86..8789431911 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 6fb31ac82a..865a2d1ec3 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 44bd73f15b..ef3bdf7092 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 347e59c036..59ac9d0997 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 640ada7260..edf398044f 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 505f65bf7e..0b7251a2b3 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 2e86c51aea..8c63a215dc 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 6c42d4c3d7..0d8c7fbdea 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index c2417d9ab3..9a3d9eff7f 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 5295e08ecc..fc02a061f0 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index ff8c980e50..62c83b2012 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 936e00edb7..4ce9381dde 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 55c3dbac16..a931db89cb 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 2ea378911d..dd546e94ac 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 22342649dc..1d2e2a897b 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 58f025a008..ec069ae166 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index be9ff9629b..d1c69c9784 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index f43f872bb3..868ead3822 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 381a03f2c5..42817622fe 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 672f87ff60..5dec0b84ae 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index e3d4a6406e..47589b5f38 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index cbc8c317b6..8cd2093ecd 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 98e80ab1eb..5926fcafee 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 184adb3d53..5a3adc35d8 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 4c1f6d7e63..95f3404980 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 7abfa62dd1..df1eb510b5 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index df8e37870f..03b90b15e9 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.172 + emodb-6.5.98 diff --git a/plugins/pom.xml b/plugins/pom.xml index aa4b1d539f..c1549d71ab 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 36a1cba8b6..f822288eac 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.172 + emodb-6.5.98 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 418e6c0441..8ee8d3ac19 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index eb0baeadde..4b9cef885c 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index e8bc281d53..ea9375db3d 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 726aca617f..f1d40d5fd4 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index e513061d79..bdd22a37d8 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 6e9d7d6ede..f8b49ab433 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 508b8364e8..71b610a454 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 6ffecb4db2..fe62a4bac5 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 437b8a2f15..701247d4c5 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 0b9815ca77..c596c7ccba 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index c26b844ac2..b369e2ec49 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 4849784556..9b76d09af6 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 2c6761b146..f26caee2f0 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index fad0ee0be2..cba1f0015d 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 5bf3674d5d..ca098fb31e 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index e2e7eecd92..fdc8d9a0bd 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 2c2714b35c..50f9bfe7b4 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 18a92e495f..074be66985 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 6871f69d69..59e60e3bb4 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 1962d1867b..5eb3e0bc62 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172 + 6.5.172-SNAPSHOT ../parent/pom.xml From 78c185bd03913321b44ce2d60595c446b9791458 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Thu, 3 Oct 2024 16:20:23 +0530 Subject: [PATCH 15/24] PD-249428: changed snapshot versions. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 2 +- plugins/pom.xml | 2 +- pom.xml | 2 +- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 80fc99f546..bb610f65ca 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index ac8ea96eeb..2d6f33095b 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index fa6f9ad296..f9e2c8dfc5 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 1da390321e..1c3d0716cf 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index ff848306bc..8d991a6838 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 07aafb217c..0bd6dbb9a3 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 8789431911..e19a961077 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 865a2d1ec3..b6e04955f3 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index ef3bdf7092..0149897804 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 59ac9d0997..4b39f9f223 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index edf398044f..ba4160cf6c 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 0b7251a2b3..83b2968505 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 8c63a215dc..0cde4c0326 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 0d8c7fbdea..e3b5f19fb9 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 9a3d9eff7f..6796891633 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index fc02a061f0..bfc4491fd2 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 62c83b2012..823bb0e410 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 4ce9381dde..a3d322fbae 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index a931db89cb..07919e2a88 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index dd546e94ac..ec905c5a4c 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 1d2e2a897b..3f80ed508d 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index ec069ae166..9d5554abb0 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index d1c69c9784..1348fbf942 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 868ead3822..a31c160b53 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 42817622fe..41820682ce 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 5dec0b84ae..16d7e660a5 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 47589b5f38..7095c95606 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 8cd2093ecd..c5354e2051 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 5926fcafee..ab79523869 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 5a3adc35d8..25d0475da9 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 95f3404980..48c4c5f5ac 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index df1eb510b5..800ce40d4e 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 03b90b15e9..f592977095 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT pom EmoDB Parent diff --git a/plugins/pom.xml b/plugins/pom.xml index c1549d71ab..9f312cf399 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index f822288eac..c6910a52d0 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT parent/pom.xml diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 8ee8d3ac19..1ade522bf0 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 4b9cef885c..dbc1e86204 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index ea9375db3d..e28a737125 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index f1d40d5fd4..4875999a09 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index bdd22a37d8..fba9f365f1 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index f8b49ab433..15c96ac83b 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 71b610a454..54c4e6d236 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index fe62a4bac5..2439648b40 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 701247d4c5..ce02052258 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index c596c7ccba..fcfda27568 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index b369e2ec49..5e25ab5538 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 9b76d09af6..f4aa181e7b 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index f26caee2f0..afca3a2a88 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index cba1f0015d..90b71f0af9 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index ca098fb31e..8657d2904a 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index fdc8d9a0bd..1181c2edbf 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 50f9bfe7b4..a184a243a1 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 074be66985..76245340b8 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 59e60e3bb4..719414e3de 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 5eb3e0bc62..d9a3335bd1 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.172-SNAPSHOT + 6.5.173-SNAPSHOT ../parent/pom.xml From 96041461678347135042a5e0fbeb9f54cb94cd61 Mon Sep 17 00:00:00 2001 From: jenkins Date: Thu, 3 Oct 2024 11:03:28 +0000 Subject: [PATCH 16/24] branch admin -prepare release emodb-6.5.173 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index bb610f65ca..ec51d0acd0 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 2d6f33095b..ede8fa5dfd 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index f9e2c8dfc5..1f72a6dda0 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 1c3d0716cf..9e880a305c 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.173-SNAPSHOT + 6.5.173 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 8d991a6838..ec821ef1a1 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 0bd6dbb9a3..3fa0690a56 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index e19a961077..db53f050e2 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index b6e04955f3..32053bdffb 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 0149897804..b8cef404f3 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 4b39f9f223..0e35427e98 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index ba4160cf6c..ec9a6d7427 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 83b2968505..c5668503ed 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 0cde4c0326..ee4f7304c5 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index e3b5f19fb9..16492dffac 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 6796891633..1d856501cc 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index bfc4491fd2..d7b4e7630c 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 823bb0e410..7c3949c0c3 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index a3d322fbae..ad5d502795 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 07919e2a88..bc6224489d 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index ec905c5a4c..06fb1c50f3 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 3f80ed508d..3256abc08a 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 9d5554abb0..28f1ef55b4 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 1348fbf942..fe02861f3a 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index a31c160b53..17b7d3fca5 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 41820682ce..dea67850e4 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 16d7e660a5..967cf65c66 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 7095c95606..7788ccd95c 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index c5354e2051..dd9bdfd829 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index ab79523869..91031da481 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 25d0475da9..b13beea08f 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 48c4c5f5ac..8572c17246 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 800ce40d4e..d2f6d15c82 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index f592977095..7bae7b2bb6 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.173 diff --git a/plugins/pom.xml b/plugins/pom.xml index 9f312cf399..9f999ad29e 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index c6910a52d0..be1ae1730f 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.173 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 1ade522bf0..b8ff302603 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index dbc1e86204..0107ee74f2 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index e28a737125..90a20032a1 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 4875999a09..d98fc433c4 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index fba9f365f1..8e0ef1c298 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 15c96ac83b..6edf4167df 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 54c4e6d236..da85270604 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 2439648b40..f8804903a8 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index ce02052258..9886c35f89 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index fcfda27568..44ba1a6eb4 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 5e25ab5538..bcc88eaebd 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index f4aa181e7b..82ca07319e 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index afca3a2a88..922bc8e66f 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 90b71f0af9..b48428d5d3 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 8657d2904a..8cb2c3a5cd 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 1181c2edbf..abc70f2556 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index a184a243a1..1202a69a42 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 76245340b8..f51fbaaf3d 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 719414e3de..d9f7bde531 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index d9a3335bd1..4c36e9c574 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173-SNAPSHOT + 6.5.173 ../parent/pom.xml From 786ae4552f5765607872d2a174738cf5caabae37 Mon Sep 17 00:00:00 2001 From: jenkins Date: Thu, 3 Oct 2024 11:03:29 +0000 Subject: [PATCH 17/24] branch admin -prepare for next development iteration --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index ec51d0acd0..69af9b9ff3 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index ede8fa5dfd..5a208eed06 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 1f72a6dda0..67166ef07a 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 9e880a305c..652014595b 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.173 + 6.5.174-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index ec821ef1a1..6b4252af4b 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 3fa0690a56..69f2889574 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index db53f050e2..a0b0de11d3 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 32053bdffb..3b44796beb 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index b8cef404f3..d5f6f046d1 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 0e35427e98..fa7958faaf 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index ec9a6d7427..ee5946ebcd 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index c5668503ed..f307975c94 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index ee4f7304c5..79fdb28678 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 16492dffac..1595b0393a 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 1d856501cc..e8c3d9308e 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index d7b4e7630c..3bc4866db4 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 7c3949c0c3..aca855ed3a 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index ad5d502795..e06eff63e5 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index bc6224489d..7180a84ddc 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 06fb1c50f3..a24a25d66c 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 3256abc08a..b402a66698 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 28f1ef55b4..67ca267595 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index fe02861f3a..0238c888ab 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 17b7d3fca5..8c6b8e8fa5 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index dea67850e4..a665ae5fd1 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 967cf65c66..f95f03d577 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 7788ccd95c..088329a1be 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index dd9bdfd829..cd95d4ba4f 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 91031da481..fc84eeeda0 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index b13beea08f..e437753526 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 8572c17246..9a78bbc492 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index d2f6d15c82..75d48d430f 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 7bae7b2bb6..d4661e7d9b 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.173 + emodb-6.5.98 diff --git a/plugins/pom.xml b/plugins/pom.xml index 9f999ad29e..aad0e79587 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index be1ae1730f..7fd438d5b5 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.173 + emodb-6.5.98 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index b8ff302603..8248d94564 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 0107ee74f2..3abbfc7fb7 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index 90a20032a1..fedd1e4f2b 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index d98fc433c4..6781f039d2 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 8e0ef1c298..ef93a05f1b 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 6edf4167df..6982d74e0c 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index da85270604..056cdcf69e 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index f8804903a8..07eecbdaa2 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 9886c35f89..aeba247884 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 44ba1a6eb4..2483280754 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index bcc88eaebd..df146af5a7 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 82ca07319e..9066cf5c34 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 922bc8e66f..f58762536d 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index b48428d5d3..601c4f2ab3 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 8cb2c3a5cd..7fa440d639 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index abc70f2556..8587df4583 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 1202a69a42..4b68861365 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index f51fbaaf3d..ffd476f3bc 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index d9f7bde531..ef8b9c437f 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 4c36e9c574..d49a8fdc09 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.173 + 6.5.174-SNAPSHOT ../parent/pom.xml From f51f87e6faa489c464ab02270f9ec020f8de3c48 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Fri, 4 Oct 2024 14:32:12 +0530 Subject: [PATCH 18/24] changed the BASE_URL --- .../main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index 9b3d0ee88a..a3f43241e7 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -18,7 +18,7 @@ public class ApiClient { private static final Logger LOGGER = LoggerFactory.getLogger(ApiClient.class); // private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; - private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; + private final String BASE_URL = "https://uat-blob-media-service.prod.us-east-1.nexus.bazaarvoice.com/blob"; private final String TENANT_NAME = "datastorage"; public final String SUCCESS_MSG = "Successfully deleted blob."; From 3afd0a596d1ab7580501ecfcdb832b83cc7e32fb Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Fri, 4 Oct 2024 16:14:05 +0530 Subject: [PATCH 19/24] PD-249428: modified code. --- .../emodb/web/resources/blob/BlobStoreResource1.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index 2b7e2143d7..3a5000d3af 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -365,7 +365,7 @@ public Collection getTablePlacements(@Authenticated Subject subject) { @GET @Path("{table}/{blobId}") @RequiresPermissions("blob|read|{table}") - @Produces(MediaType.APPLICATION_OCTET_STREAM) + @Produces("*/*") @Timed(name = "bv.emodb.blob.BlobStoreResource1.get", absolute = true) @ApiOperation(value = "Retrieves the current version of a piece of content from the data store..", notes = "Returns a Response.", @@ -388,8 +388,9 @@ public Response get(@PathParam("table") String table, for (Map.Entry entry : headers.entrySet()) { String headerName = entry.getKey(); String headerValue = entry.getValue(); - - response.header(headerName, headerValue); + if(headerName.equalsIgnoreCase("Content-Type") + || headerName.equalsIgnoreCase("Content-Length")) + response.header(headerName, headerValue); } return response.build(); } From 540122eb10d4fb6f89d9a99a79c649709b80d6b8 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Mon, 7 Oct 2024 06:01:37 +0530 Subject: [PATCH 20/24] PD-256742: fixed all bugs. --- .../emodb/blob/config/ApiClient.java | 79 ++++++++----------- .../resources/blob/BlobStoreResource1.java | 14 ++-- 2 files changed, 41 insertions(+), 52 deletions(-) diff --git a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java index a3f43241e7..f3c0067bb7 100644 --- a/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java +++ b/blob/src/main/java/com/bazaarvoice/emodb/blob/config/ApiClient.java @@ -17,20 +17,20 @@ public class ApiClient { private static final Logger LOGGER = LoggerFactory.getLogger(ApiClient.class); -// private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; - private final String BASE_URL = "https://uat-blob-media-service.prod.us-east-1.nexus.bazaarvoice.com/blob"; + private final String BASE_URL = "https://cert-blob-media-service.qa.us-east-1.nexus.bazaarvoice.com/blob"; +// private final String BASE_URL = "https://uat-blob-media-service.prod.us-east-1.nexus.bazaarvoice.com/blob"; +// private final String BASE_URL = "http://localhost:8082/blob"; private final String TENANT_NAME = "datastorage"; public final String SUCCESS_MSG = "Successfully deleted blob."; public Iterator getBlobMetadata(String fromBlobIdExclusive) { try { LOGGER.debug(" Constructing URL and consuming datastorage-media-service URL "); - // Constructing URL with path variable and query parameters. String urlString = String.format("%s/%s/%s", BASE_URL, URLEncoder.encode(fromBlobIdExclusive, "UTF-8"), - "/metadata"); + "metadata"); URL url = new URL(urlString); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); @@ -40,7 +40,6 @@ public Iterator getBlobMetadata(String fromBlobIdExclusive) { connection.setRequestProperty("Accept", "application/json"); int responseCode = connection.getResponseCode(); - if (responseCode == HttpURLConnection.HTTP_OK) { BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream())); String inputLine; @@ -246,27 +245,31 @@ public byte[] getBlob(String tableName, String blobId, Map heade private List mapResponseToBlobMetaData(String response) { - // Parse JSON string to JsonArray + // Parse JSON string to JsonObject JsonReader jsonReader = Json.createReader(new StringReader(response)); - JsonArray jsonArray = jsonReader.readArray(); + JsonObject jsonObject = jsonReader.readObject(); // Change from readArray() to readObject() jsonReader.close(); - // Convert JsonArray to List + // Create a BlobMetadata object from the JsonObject + long length = Long.parseLong(String.valueOf(jsonObject.getInt("length"))); + + Map attributes = convertStringAttributesToMap(jsonObject.getJsonObject("attributes")); + BlobMetadata blobMetadataObject = new DefaultBlobMetadata( + jsonObject.getString("id"), + convertToDate(jsonObject.getString("timestamp")), + length, + jsonObject.getString("md5"), + jsonObject.getString("sha1"), + attributes + ); + + // Add to List List blobMetadata = new ArrayList<>(); - for (JsonObject jsonObject : jsonArray.getValuesAs(JsonObject.class)) { - long length = Long.parseLong(String.valueOf(jsonObject.getInt("length"))); - - Map attributes = convertStringAttributesToMap((JsonObject) jsonObject.get("attributes")); - BlobMetadata blobMetadataObject = new DefaultBlobMetadata(jsonObject.getString("id"), - convertToDate(jsonObject.getString("timestamp")), - length, - jsonObject.getString("md5"), - jsonObject.getString("sha1"), - attributes); - blobMetadata.add(blobMetadataObject); - } - LOGGER.debug(" After mapping of the response {} ", blobMetadata); + blobMetadata.add(blobMetadataObject); + + LOGGER.debug("After mapping of the response: {}", blobMetadata); return blobMetadata; + } private Date convertToDate(String timestamp) { @@ -318,7 +321,7 @@ private Map convertStringAttributesToMap(JsonObject attributes) private UploadByteRequestBody createUploadBlobRequestBody(String table, String clientName, String blobId, String md5, String sha1, Map attributes, - InputStream inputStream) { + InputStream inputStream) throws Exception { PlatformClient platformClient = new PlatformClient(table, clientName); Attributes attributesForRequest = new Attributes(clientName, "image/jpeg", "", platformClient.getTable() + ":" + platformClient.getClientName(), "", "photo"); @@ -340,30 +343,14 @@ private String createTimestamp() { return formatter.format(currentDate); } - private String convertInputStreamToBase64(InputStream inputStream) { - try { - // Convert InputStream to Base64 encoded string - return convertToBase64(inputStream); - } catch (IOException e) { - LOGGER.error(" InputStream cannot be converted into base64... ", e); - } - return null; - } - - public String convertToBase64(InputStream inputStream) throws IOException { - ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); - byte[] buffer = new byte[8192]; - int bytesRead; - - // Read bytes from the InputStream and write them to the ByteArrayOutputStream - while ((bytesRead = inputStream.read(buffer)) != -1) { - outputStream.write(buffer, 0, bytesRead); + private String convertInputStreamToBase64(InputStream in) throws Exception { + StringBuilder stringBuilder = new StringBuilder(); + try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8))) { + String line; + while ((line = reader.readLine()) != null) { + stringBuilder.append(line); + } } - - // Convert the ByteArrayOutputStream to a byte array - byte[] byteArray = outputStream.toByteArray(); - - // Encode the byte array to a Base64 encoded string - return Base64.getEncoder().encodeToString(byteArray); + return stringBuilder.toString(); } } diff --git a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java index 3a5000d3af..2c721309f2 100644 --- a/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java +++ b/web/src/main/java/com/bazaarvoice/emodb/web/resources/blob/BlobStoreResource1.java @@ -337,10 +337,10 @@ public Response head(@PathParam("table") String table, ) public Iterator scanMetadata(@PathParam("table") String table, @QueryParam("from") String blobId, - @QueryParam("limit") @DefaultValue("10") LongParam limit, - @Authenticated Subject subject) { - _scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); - return streamingIterator(_blobStore.scanMetadata(table, Strings.emptyToNull(blobId), limit.get())); + @QueryParam("limit") @DefaultValue("10") LongParam limit) { + //_scanMetadataRequestsByApiKey.getUnchecked(subject.getId()).mark(); + _log.info("Table : {}", table); + return _blobStore.scanMetadata(table, Strings.emptyToNull(blobId), limit.get()); } /** @@ -388,9 +388,11 @@ public Response get(@PathParam("table") String table, for (Map.Entry entry : headers.entrySet()) { String headerName = entry.getKey(); String headerValue = entry.getValue(); - if(headerName.equalsIgnoreCase("Content-Type") - || headerName.equalsIgnoreCase("Content-Length")) + if(headerName != null && (headerName.equalsIgnoreCase("Content-Type") + || headerName.equalsIgnoreCase("Content-Length"))) { + System.out.println(" headerName : " + headerName + " headerValue : " + headerValue); response.header(headerName, headerValue); + } } return response.build(); } From 91c73bbba3d38397990d7fa7df31afadc4c29b9c Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Mon, 7 Oct 2024 06:06:20 +0530 Subject: [PATCH 21/24] PD-256742: changed snapshot version. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 2 +- plugins/pom.xml | 2 +- pom.xml | 2 +- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 69af9b9ff3..bd787c4cdd 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 5a208eed06..af933764cd 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 67166ef07a..56c72fe6cd 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 652014595b..553106419f 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 6b4252af4b..057151f6cb 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index 69f2889574..b64bec42ce 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index a0b0de11d3..5e76f2e9f5 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 3b44796beb..d5183a81db 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index d5f6f046d1..11b5005fe5 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index fa7958faaf..15a678ae35 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index ee5946ebcd..3e6414c920 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index f307975c94..dac8f69232 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 79fdb28678..87f079b674 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 1595b0393a..247f5e93c3 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index e8c3d9308e..8db8e56a61 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 3bc4866db4..25f62d98ec 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index aca855ed3a..799db00d2d 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index e06eff63e5..bab5c4b121 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 7180a84ddc..33fab974d0 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index a24a25d66c..f206f1f839 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index b402a66698..c03a78da1d 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 67ca267595..c4258d156e 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 0238c888ab..a87ec1d794 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 8c6b8e8fa5..55fc947095 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index a665ae5fd1..5be595d58a 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index f95f03d577..271d93b700 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 088329a1be..90547895e3 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index cd95d4ba4f..03fa53eef0 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index fc84eeeda0..74735b6c05 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index e437753526..4081b648e5 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 9a78bbc492..dd69b59c07 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 75d48d430f..37072f039d 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index d4661e7d9b..1ca9f6de5c 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT pom EmoDB Parent diff --git a/plugins/pom.xml b/plugins/pom.xml index aad0e79587..ceb7509b6a 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 7fd438d5b5..d8d3564393 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT parent/pom.xml diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 8248d94564..44ea655ca0 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 3abbfc7fb7..77abbe3499 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index fedd1e4f2b..1ee933add8 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 6781f039d2..9ded18e78a 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index ef93a05f1b..8b248b0b5f 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 6982d74e0c..f227c7223c 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 056cdcf69e..589cae72cc 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 07eecbdaa2..b7c3b8bebf 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index aeba247884..eb6bb110b6 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 2483280754..5ddc94906c 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index df146af5a7..cc7c8ceba5 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 9066cf5c34..c3712423bc 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index f58762536d..d7364dbd97 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 601c4f2ab3..c0d3fc4c5e 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 7fa440d639..16eefe3758 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index 8587df4583..a76902c969 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 4b68861365..c043a2e678 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index ffd476f3bc..0e1e82be0b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index ef8b9c437f..bb0da850f7 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index d49a8fdc09..c698133098 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.174-SNAPSHOT + 6.5.175-SNAPSHOT ../parent/pom.xml From 3280634eadc9e6c0a0087cb2e3b6c2e934e253e3 Mon Sep 17 00:00:00 2001 From: vikram-vikram_bveng Date: Tue, 8 Oct 2024 11:24:53 +0530 Subject: [PATCH 22/24] PD-256742: changed snapshot version. --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 2 +- plugins/pom.xml | 2 +- pom.xml | 2 +- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index bd787c4cdd..373324a485 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index af933764cd..9cff446708 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 56c72fe6cd..ed0f3ca0b6 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 553106419f..2c4ee68028 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index 057151f6cb..ba69d4c78e 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index b64bec42ce..ad00fb70cf 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 5e76f2e9f5..494f909de9 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index d5183a81db..f95d1b8228 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index 11b5005fe5..bebbeb097b 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index 15a678ae35..a7b68eb27f 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 3e6414c920..53b84e4544 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index dac8f69232..02ff6e82dd 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index 87f079b674..c29a474203 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 247f5e93c3..0a2060aebe 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 8db8e56a61..464bfbe77f 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 25f62d98ec..7d93469465 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 799db00d2d..8581fa590f 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index bab5c4b121..e85091415d 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index 33fab974d0..e3e982f29a 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index f206f1f839..05548b9605 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index c03a78da1d..dd28557d82 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index c4258d156e..6be85afa00 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index a87ec1d794..6329c3b81e 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 55fc947095..d57433ccd4 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 5be595d58a..66e60b387a 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 271d93b700..451d1033be 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 90547895e3..ec940d199d 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 03fa53eef0..3b125b341b 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 74735b6c05..0ec08397eb 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 4081b648e5..a214507d10 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index dd69b59c07..3ac5ae2e21 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 37072f039d..047c0eaec4 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 1ca9f6de5c..b095ce32eb 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT pom EmoDB Parent diff --git a/plugins/pom.xml b/plugins/pom.xml index ceb7509b6a..3ec360a2fb 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index d8d3564393..89c73c476f 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT parent/pom.xml diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index 44ea655ca0..dfbb82f392 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 77abbe3499..7a601efc4d 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index 1ee933add8..e3821fd2cb 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 9ded18e78a..47fd8c5234 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 8b248b0b5f..564d7ff445 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index f227c7223c..f416d7626a 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 589cae72cc..4452c9712d 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index b7c3b8bebf..a0f78355b7 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index eb6bb110b6..976bb0188b 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 5ddc94906c..34580b74a6 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index cc7c8ceba5..736308f44a 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index c3712423bc..42f3460907 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index d7364dbd97..729f5712c3 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index c0d3fc4c5e..24cfac184f 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 16eefe3758..729157f1d0 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index a76902c969..cfb6d9012b 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index c043a2e678..6cbb3997e7 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 0e1e82be0b..6f3e1a3a9b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index bb0da850f7..25e69fdac1 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index c698133098..82eee1d706 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.175-SNAPSHOT + 6.5.176-SNAPSHOT ../parent/pom.xml From a3eb711ac927ed3b0f4335a20fb5ef2c1d52a676 Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 8 Oct 2024 06:15:12 +0000 Subject: [PATCH 23/24] branch admin -prepare release emodb-6.5.176 --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 373324a485..5a316ca3bd 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 9cff446708..2a931c349c 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index ed0f3ca0b6..9675c8acea 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index 2c4ee68028..d7388cda70 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.176-SNAPSHOT + 6.5.176 ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index ba69d4c78e..f4e6812e0a 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index ad00fb70cf..e5035b61b2 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 494f909de9..6149570fa3 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index f95d1b8228..1feafa2e9d 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index bebbeb097b..f46eb309c3 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index a7b68eb27f..d7fbc286ee 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 53b84e4544..582de0208e 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index 02ff6e82dd..afde48d993 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index c29a474203..f0b1cd2868 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 0a2060aebe..65c7475836 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index 464bfbe77f..f8ca0c3966 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 7d93469465..82929aa457 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 8581fa590f..0361fbb6ff 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index e85091415d..7c37d52775 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index e3e982f29a..d37a67ecfc 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 05548b9605..63a5b38237 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index dd28557d82..29e5a8beb7 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 6be85afa00..1b31052fe4 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 6329c3b81e..977fb299b5 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index d57433ccd4..051ae2e70e 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 66e60b387a..31a1dd8463 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 451d1033be..630318e73a 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index ec940d199d..34f6dee0dd 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index 3b125b341b..aea36b8671 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 0ec08397eb..51cc9be37e 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index a214507d10..6148ba2dbd 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 3ac5ae2e21..671aa150f9 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 047c0eaec4..0972b97071 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index b095ce32eb..68f954f464 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.176 diff --git a/plugins/pom.xml b/plugins/pom.xml index 3ec360a2fb..74cd1dbce1 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 89c73c476f..31d07d2941 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.98 + emodb-6.5.176 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index dfbb82f392..b6db4145a3 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index 7a601efc4d..dbb0d12cbb 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index e3821fd2cb..ff54ab3c7b 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 47fd8c5234..29ec27b132 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 564d7ff445..9f627085aa 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index f416d7626a..2b59b413c8 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 4452c9712d..0523a13113 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index a0f78355b7..69adaf0d86 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 976bb0188b..237451daa4 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index 34580b74a6..a3588286e2 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 736308f44a..09093906a4 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 42f3460907..6ada3d2b53 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 729f5712c3..2b1b60c820 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index 24cfac184f..b71dd2a5f4 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index 729157f1d0..bb2be8ec1f 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index cfb6d9012b..d7c8cb7221 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index 6cbb3997e7..a9ea3c515c 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 6f3e1a3a9b..0bd6b8989b 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index 25e69fdac1..ea38f2de53 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 82eee1d706..48523b60eb 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176-SNAPSHOT + 6.5.176 ../parent/pom.xml From 8ca7d3e9073930514081034b62197e2be09e5766 Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 8 Oct 2024 06:15:15 +0000 Subject: [PATCH 24/24] branch admin -prepare for next development iteration --- auth/auth-client/pom.xml | 2 +- auth/auth-core/pom.xml | 2 +- auth/auth-store/pom.xml | 2 +- auth/auth-util/pom.xml | 2 +- blob-api/pom.xml | 2 +- blob-clients/blob-client-common/pom.xml | 2 +- blob-clients/blob-client-jersey2/pom.xml | 2 +- blob-clients/blob-client/pom.xml | 2 +- blob/pom.xml | 2 +- cachemgr/pom.xml | 2 +- common/api/pom.xml | 2 +- common/astyanax/pom.xml | 2 +- common/client-jax-rs-2/pom.xml | 2 +- common/client-jersey2/pom.xml | 2 +- common/client/pom.xml | 2 +- common/dropwizard/pom.xml | 2 +- common/jersey-client/pom.xml | 2 +- common/json/pom.xml | 2 +- common/stash/pom.xml | 2 +- common/uuid/pom.xml | 2 +- common/zookeeper/pom.xml | 2 +- databus-api/pom.xml | 2 +- databus-client-common/pom.xml | 2 +- databus-client-jersey2/pom.xml | 2 +- databus-client/pom.xml | 2 +- databus/pom.xml | 2 +- datacenter/pom.xml | 2 +- event/pom.xml | 2 +- job-api/pom.xml | 2 +- job/pom.xml | 2 +- kafka/pom.xml | 2 +- megabus/pom.xml | 2 +- parent/pom.xml | 4 ++-- plugins/pom.xml | 2 +- pom.xml | 4 ++-- quality/integration/pom.xml | 2 +- quality/pom.xml | 2 +- queue-api/pom.xml | 2 +- queue-client-common/pom.xml | 2 +- queue-client-jersey2/pom.xml | 2 +- queue-client/pom.xml | 2 +- queue/pom.xml | 2 +- sdk/pom.xml | 2 +- sor-api/pom.xml | 2 +- sor-client-common/pom.xml | 2 +- sor-client-jersey2/pom.xml | 2 +- sor-client/pom.xml | 2 +- sor/pom.xml | 2 +- table/pom.xml | 2 +- uac-api/pom.xml | 2 +- uac-client-jersey2/pom.xml | 2 +- uac-client/pom.xml | 2 +- web-local/pom.xml | 2 +- web/pom.xml | 2 +- yum/pom.xml | 2 +- 55 files changed, 57 insertions(+), 57 deletions(-) diff --git a/auth/auth-client/pom.xml b/auth/auth-client/pom.xml index 5a316ca3bd..4439cc38c3 100644 --- a/auth/auth-client/pom.xml +++ b/auth/auth-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index 2a931c349c..b8ff1582fe 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-store/pom.xml b/auth/auth-store/pom.xml index 9675c8acea..c85aa2d8d6 100644 --- a/auth/auth-store/pom.xml +++ b/auth/auth-store/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/auth/auth-util/pom.xml b/auth/auth-util/pom.xml index d7388cda70..d7c9eac52f 100644 --- a/auth/auth-util/pom.xml +++ b/auth/auth-util/pom.xml @@ -3,7 +3,7 @@ emodb com.bazaarvoice.emodb - 6.5.176 + 6.5.177-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/blob-api/pom.xml b/blob-api/pom.xml index f4e6812e0a..91e785ae2d 100644 --- a/blob-api/pom.xml +++ b/blob-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/blob-clients/blob-client-common/pom.xml b/blob-clients/blob-client-common/pom.xml index e5035b61b2..6d8b72a021 100644 --- a/blob-clients/blob-client-common/pom.xml +++ b/blob-clients/blob-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client-jersey2/pom.xml b/blob-clients/blob-client-jersey2/pom.xml index 6149570fa3..d6606994ef 100644 --- a/blob-clients/blob-client-jersey2/pom.xml +++ b/blob-clients/blob-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/blob-clients/blob-client/pom.xml b/blob-clients/blob-client/pom.xml index 1feafa2e9d..3ab34c3528 100644 --- a/blob-clients/blob-client/pom.xml +++ b/blob-clients/blob-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/blob/pom.xml b/blob/pom.xml index f46eb309c3..6650cb9b04 100644 --- a/blob/pom.xml +++ b/blob/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/cachemgr/pom.xml b/cachemgr/pom.xml index d7fbc286ee..f5216487a8 100644 --- a/cachemgr/pom.xml +++ b/cachemgr/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/common/api/pom.xml b/common/api/pom.xml index 582de0208e..c1201b08fd 100644 --- a/common/api/pom.xml +++ b/common/api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/astyanax/pom.xml b/common/astyanax/pom.xml index afde48d993..220ca48bde 100644 --- a/common/astyanax/pom.xml +++ b/common/astyanax/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jax-rs-2/pom.xml b/common/client-jax-rs-2/pom.xml index f0b1cd2868..be79608aaa 100644 --- a/common/client-jax-rs-2/pom.xml +++ b/common/client-jax-rs-2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/client-jersey2/pom.xml b/common/client-jersey2/pom.xml index 65c7475836..ea3ae916bf 100644 --- a/common/client-jersey2/pom.xml +++ b/common/client-jersey2/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/client/pom.xml b/common/client/pom.xml index f8ca0c3966..3a99adaa34 100644 --- a/common/client/pom.xml +++ b/common/client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/dropwizard/pom.xml b/common/dropwizard/pom.xml index 82929aa457..7acbfe60b2 100644 --- a/common/dropwizard/pom.xml +++ b/common/dropwizard/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/jersey-client/pom.xml b/common/jersey-client/pom.xml index 0361fbb6ff..adcd01b473 100644 --- a/common/jersey-client/pom.xml +++ b/common/jersey-client/pom.xml @@ -5,7 +5,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/json/pom.xml b/common/json/pom.xml index 7c37d52775..19b5e6b13f 100644 --- a/common/json/pom.xml +++ b/common/json/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/stash/pom.xml b/common/stash/pom.xml index d37a67ecfc..6ca47f1e72 100644 --- a/common/stash/pom.xml +++ b/common/stash/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/uuid/pom.xml b/common/uuid/pom.xml index 63a5b38237..eec1176510 100644 --- a/common/uuid/pom.xml +++ b/common/uuid/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/common/zookeeper/pom.xml b/common/zookeeper/pom.xml index 29e5a8beb7..fc65ca5f62 100644 --- a/common/zookeeper/pom.xml +++ b/common/zookeeper/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/databus-api/pom.xml b/databus-api/pom.xml index 1b31052fe4..7baf8e10ac 100644 --- a/databus-api/pom.xml +++ b/databus-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-common/pom.xml b/databus-client-common/pom.xml index 977fb299b5..c989ef1706 100644 --- a/databus-client-common/pom.xml +++ b/databus-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/databus-client-jersey2/pom.xml b/databus-client-jersey2/pom.xml index 051ae2e70e..efca1d52c0 100644 --- a/databus-client-jersey2/pom.xml +++ b/databus-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/databus-client/pom.xml b/databus-client/pom.xml index 31a1dd8463..e48eeb3b44 100644 --- a/databus-client/pom.xml +++ b/databus-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/databus/pom.xml b/databus/pom.xml index 630318e73a..07a6e3ad8c 100644 --- a/databus/pom.xml +++ b/databus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/datacenter/pom.xml b/datacenter/pom.xml index 34f6dee0dd..2f795d4766 100644 --- a/datacenter/pom.xml +++ b/datacenter/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/event/pom.xml b/event/pom.xml index aea36b8671..9b6124f933 100644 --- a/event/pom.xml +++ b/event/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/job-api/pom.xml b/job-api/pom.xml index 51cc9be37e..5bae4dc331 100644 --- a/job-api/pom.xml +++ b/job-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/job/pom.xml b/job/pom.xml index 6148ba2dbd..4857d95ee6 100644 --- a/job/pom.xml +++ b/job/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/kafka/pom.xml b/kafka/pom.xml index 671aa150f9..8c01e6a98d 100644 --- a/kafka/pom.xml +++ b/kafka/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/megabus/pom.xml b/megabus/pom.xml index 0972b97071..4351f62434 100644 --- a/megabus/pom.xml +++ b/megabus/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/parent/pom.xml b/parent/pom.xml index 68f954f464..181de2d821 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT pom EmoDB Parent @@ -20,7 +20,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.176 + emodb-6.5.98 diff --git a/plugins/pom.xml b/plugins/pom.xml index 74cd1dbce1..06ee0f2f9d 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/pom.xml b/pom.xml index 31d07d2941..b1343df982 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT parent/pom.xml @@ -18,7 +18,7 @@ scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git scm:git:git@github.com:bazaarvoice/emodb.git - emodb-6.5.176 + emodb-6.5.98 diff --git a/quality/integration/pom.xml b/quality/integration/pom.xml index b6db4145a3..e6b21c9c5a 100644 --- a/quality/integration/pom.xml +++ b/quality/integration/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../../parent/pom.xml diff --git a/quality/pom.xml b/quality/pom.xml index dbb0d12cbb..f38d48f351 100644 --- a/quality/pom.xml +++ b/quality/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/queue-api/pom.xml b/queue-api/pom.xml index ff54ab3c7b..659cc411c7 100644 --- a/queue-api/pom.xml +++ b/queue-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-common/pom.xml b/queue-client-common/pom.xml index 29ec27b132..46b29311c7 100644 --- a/queue-client-common/pom.xml +++ b/queue-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/queue-client-jersey2/pom.xml b/queue-client-jersey2/pom.xml index 9f627085aa..a00df0e487 100644 --- a/queue-client-jersey2/pom.xml +++ b/queue-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/queue-client/pom.xml b/queue-client/pom.xml index 2b59b413c8..5a6bde4418 100644 --- a/queue-client/pom.xml +++ b/queue-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/queue/pom.xml b/queue/pom.xml index 0523a13113..7a6618f608 100644 --- a/queue/pom.xml +++ b/queue/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sdk/pom.xml b/sdk/pom.xml index 69adaf0d86..42b0614586 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sor-api/pom.xml b/sor-api/pom.xml index 237451daa4..18d3dce32c 100644 --- a/sor-api/pom.xml +++ b/sor-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-common/pom.xml b/sor-client-common/pom.xml index a3588286e2..5ff99fe363 100644 --- a/sor-client-common/pom.xml +++ b/sor-client-common/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sor-client-jersey2/pom.xml b/sor-client-jersey2/pom.xml index 09093906a4..932d457fe1 100644 --- a/sor-client-jersey2/pom.xml +++ b/sor-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sor-client/pom.xml b/sor-client/pom.xml index 6ada3d2b53..76f3178e7a 100644 --- a/sor-client/pom.xml +++ b/sor-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/sor/pom.xml b/sor/pom.xml index 2b1b60c820..60ebb328e3 100644 --- a/sor/pom.xml +++ b/sor/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/table/pom.xml b/table/pom.xml index b71dd2a5f4..4b89dd4d05 100644 --- a/table/pom.xml +++ b/table/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/uac-api/pom.xml b/uac-api/pom.xml index bb2be8ec1f..ecc15c09c9 100644 --- a/uac-api/pom.xml +++ b/uac-api/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/uac-client-jersey2/pom.xml b/uac-client-jersey2/pom.xml index d7c8cb7221..bb6b3ba5c2 100644 --- a/uac-client-jersey2/pom.xml +++ b/uac-client-jersey2/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/uac-client/pom.xml b/uac-client/pom.xml index a9ea3c515c..2145796b96 100644 --- a/uac-client/pom.xml +++ b/uac-client/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/web-local/pom.xml b/web-local/pom.xml index 0bd6b8989b..5ffa433da9 100644 --- a/web-local/pom.xml +++ b/web-local/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/web/pom.xml b/web/pom.xml index ea38f2de53..6b9fd1ea96 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,7 +6,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml diff --git a/yum/pom.xml b/yum/pom.xml index 48523b60eb..8ce53e7f1c 100644 --- a/yum/pom.xml +++ b/yum/pom.xml @@ -4,7 +4,7 @@ com.bazaarvoice.emodb emodb-parent - 6.5.176 + 6.5.177-SNAPSHOT ../parent/pom.xml