Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 3538bbf

Browse files
rishuyadavbvjenkinsanandujayanReddyAnand-BVnabajyotiDash-hub
authored
SQS integration in blob and metrics for queue service migration prerequisite (#829)
* feat: integrate sqs to blob service * Create an sqs service to send messages to sqs * Send all the incoming PUT and DELETE request to sqs * feat: inlcude functionality to store encoded blob in sqs * Convert the incoming blob to bytearray, encode it and send it to sqs * Handle the incoming api request of PUT blob object * Send the attributes and object to sqs * feat: restructure the queue intialization following better architecture * Create interface for queue, so can include multiple implementations * Follow lose coupling * Use a factory method for sqs initialization * PD-239427 fix: fix logging and simplified factory * feat: include params required for iss, send to sqs and update queue name * Include queue url param to be sent to sqs * Update the queue name * Update the factory as per the required changes * update: update tags for deployment * branch admin -prepare release emodb-6.5.135 * branch admin -prepare for next development iteration * update: add fifo queue for blobstore migration and tag changes * branch admin -prepare release emodb-6.5.144 * branch admin -prepare for next development iteration * fix: remove sending of bytecode to sqs * For large files , bytecode is too huge to be sent to sqs * Send request url instead of bytecode * feat: add custom exceptions * handle exceptions in a robust way * add digestbytes to sqs * chore: add tags skip sonatype for deployment * branch admin -prepare release emodb-6.5.159 * branch admin -prepare for next development iteration * fix: add back sonatype dependency * branch admin -prepare release emodb-6.5.160 * branch admin -prepare for next development iteration * Removed bytearray in sqs put * Update MessagingService.java for removing byte * Update SQSService.java * branch admin -prepare release emodb-6.5.161 * branch admin -prepare for next development iteration * skipping nexus plugin for testing --parent.pom * branch admin -prepare release emodb-6.5.162 * branch admin -prepare for next development iteration * add metrics to Queue poll * branch admin -prepare release emodb-6.5.163 * branch admin -prepare for next development iteration * update pom version * branch admin -prepare release emodb-6.5.165 * branch admin -prepare for next development iteration * branch admin -prepare release emodb-6.5.166 * branch admin -prepare for next development iteration * feat: add poll metrics for dedupq * feat: add send count metrics * fix: add metrics for sendBatch * udate: update tags from 167 to 168 * fix: fix the compilation issue remove metricregistry from constructor * branch admin -prepare release emodb-6.5.168 * branch admin -prepare for next development iteration * chore: update tags from 168 to 169 * branch admin -prepare release emodb-6.5.169 * branch admin -prepare for next development iteration * fix: fix the metric tag name issue * branch admin -prepare release emodb-6.5.170 * branch admin -prepare for next development iteration --------- Co-authored-by: jenkins <[email protected]> Co-authored-by: anandujayan <[email protected]> Co-authored-by: ReddyAnand-BV <[email protected]> Co-authored-by: Nabajyoti Dash <[email protected]>
1 parent 16992be commit 3538bbf

File tree

69 files changed

+440
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+440
-113
lines changed

auth/auth-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

auth/auth-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

auth/auth-store/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

auth/auth-util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>emodb</artifactId>
55
<groupId>com.bazaarvoice.emodb</groupId>
6-
<version>6.5.137-SNAPSHOT</version>
6+
<version>6.5.171-SNAPSHOT</version>
77
<relativePath>../../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

blob-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

blob-clients/blob-client-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

blob-clients/blob-client-jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

blob-clients/blob-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

blob/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

cachemgr/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

common/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/astyanax/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/client-jax-rs-2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/client-jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.bazaarvoice.emodb</groupId>
77
<artifactId>emodb-parent</artifactId>
8-
<version>6.5.137-SNAPSHOT</version>
8+
<version>6.5.171-SNAPSHOT</version>
99
<relativePath>../../parent/pom.xml</relativePath>
1010
</parent>
1111

common/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/dropwizard/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/jersey-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.bazaarvoice.emodb</groupId>
77
<artifactId>emodb-parent</artifactId>
8-
<version>6.5.137-SNAPSHOT</version>
8+
<version>6.5.171-SNAPSHOT</version>
99
<relativePath>../../parent/pom.xml</relativePath>
1010
</parent>
1111

common/json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/stash/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/uuid/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

common/zookeeper/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

databus-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

databus-client-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

databus-client-jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

databus-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

databus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

datacenter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

event/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

job-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

job/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

kafka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

megabus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

parent/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.bazaarvoice.emodb</groupId>
1313
<artifactId>emodb-parent</artifactId>
14-
<version>6.5.137-SNAPSHOT</version>
14+
<version>6.5.171-SNAPSHOT</version>
1515
<packaging>pom</packaging>
1616

1717
<name>EmoDB Parent</name>
@@ -882,7 +882,7 @@
882882
</execution>
883883
</executions>
884884
</plugin>
885-
<plugin>
885+
<!-- <plugin>
886886
<groupId>org.sonatype.plugins</groupId>
887887
<artifactId>nexus-staging-maven-plugin</artifactId>
888888
<version>1.6.13</version>
@@ -892,7 +892,7 @@
892892
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
893893
<autoReleaseAfterClose>${nexus.autoReleaseAfterClose}</autoReleaseAfterClose>
894894
</configuration>
895-
</plugin>
895+
</plugin> -->
896896
<plugin>
897897
<groupId>org.apache.maven.plugins</groupId>
898898
<artifactId>maven-dependency-plugin</artifactId>
@@ -904,7 +904,7 @@
904904
<goal>analyze-only</goal>
905905
</goals>
906906
<configuration>
907-
<failOnWarning>true</failOnWarning>
907+
<failOnWarning>false</failOnWarning>
908908
<ignoreNonCompile>true</ignoreNonCompile>
909909
<ignoredUnusedDeclaredDependencies>
910910
<unusedDeclaredDependency>com.fasterxml.jackson.datatype:jackson-datatype-joda</unusedDeclaredDependency>

plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.bazaarvoice.emodb</groupId>
66
<artifactId>emodb-parent</artifactId>
7-
<version>6.5.137-SNAPSHOT</version>
7+
<version>6.5.171-SNAPSHOT</version>
88
<relativePath>../parent/pom.xml</relativePath>
99
</parent>
1010

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>parent/pom.xml</relativePath>
1111
</parent>
1212

quality/integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../../parent/pom.xml</relativePath>
1111
</parent>
1212

quality/integration/src/test/java/test/integration/queue/DedupQueueJerseyTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import com.bazaarvoice.ostrich.PartitionContextBuilder;
1717
import com.bazaarvoice.ostrich.pool.OstrichAccessors;
1818
import com.bazaarvoice.ostrich.pool.PartitionContextValidator;
19+
import com.codahale.metrics.MetricRegistry;
1920
import com.google.common.collect.ImmutableList;
2021
import com.google.common.collect.ImmutableMap;
2122
import com.google.common.collect.ImmutableMultimap;
@@ -56,7 +57,7 @@ public class DedupQueueJerseyTest extends ResourceTest {
5657

5758
@Rule
5859
public ResourceTestRule _resourceTestRule = setupResourceTestRule(
59-
Collections.<Object>singletonList(new DedupQueueResource1(_server, DedupQueueServiceAuthenticator.proxied(_proxy))),
60+
Collections.<Object>singletonList(new DedupQueueResource1(_server, DedupQueueServiceAuthenticator.proxied(_proxy), new MetricRegistry())),
6061
ImmutableMap.of(
6162
APIKEY_QUEUE, new ApiKey("queue", ImmutableSet.of("queue-role")),
6263
APIKEY_UNAUTHORIZED, new ApiKey("unauth", ImmutableSet.of("unauthorized-role"))),

quality/integration/src/test/java/test/integration/queue/QueueJerseyTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import com.bazaarvoice.ostrich.PartitionContextBuilder;
1717
import com.bazaarvoice.ostrich.pool.OstrichAccessors;
1818
import com.bazaarvoice.ostrich.pool.PartitionContextValidator;
19+
import com.codahale.metrics.MetricRegistry;
1920
import com.google.common.collect.ImmutableList;
2021
import com.google.common.collect.ImmutableMap;
2122
import com.google.common.collect.ImmutableMultimap;
@@ -56,7 +57,7 @@ public class QueueJerseyTest extends ResourceTest {
5657

5758
@Rule
5859
public ResourceTestRule _resourceTestRule = setupResourceTestRule(
59-
Collections.<Object>singletonList(new QueueResource1(_server, QueueServiceAuthenticator.proxied(_proxy))),
60+
Collections.<Object>singletonList(new QueueResource1(_server, QueueServiceAuthenticator.proxied(_proxy), new MetricRegistry())),
6061
ImmutableMap.of(
6162
APIKEY_QUEUE, new ApiKey("queue", ImmutableSet.of("queue-role")),
6263
APIKEY_UNAUTHORIZED, new ApiKey("unauth", ImmutableSet.of("unauthorized-role"))),

quality/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.bazaarvoice.emodb</groupId>
88
<artifactId>emodb-parent</artifactId>
9-
<version>6.5.137-SNAPSHOT</version>
9+
<version>6.5.171-SNAPSHOT</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)