Skip to content

Commit

Permalink
Upgrade SmallRye GraphQL to 1.0.18
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Kruger <[email protected]>
  • Loading branch information
phillip-kruger committed Nov 27, 2020
1 parent d51cbc0 commit b0fcb0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<smallrye-health.version>2.2.5</smallrye-health.version>
<smallrye-metrics.version>2.4.4</smallrye-metrics.version>
<smallrye-open-api.version>2.0.15</smallrye-open-api.version>
<smallrye-graphql.version>1.0.15</smallrye-graphql.version>
<smallrye-graphql.version>1.0.18</smallrye-graphql.version>
<smallrye-opentracing.version>1.3.4</smallrye-opentracing.version>
<smallrye-fault-tolerance.version>4.3.2</smallrye-fault-tolerance.version>
<smallrye-jwt.version>2.3.1</smallrye-jwt.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MetricsTest {
public void testQuery() {
MetricRegistry metricRegistry = MetricRegistries.get(MetricRegistry.Type.VENDOR);
SimpleTimer metric = metricRegistry.getSimpleTimers()
.get(new MetricID("mp_graphql", new Tag("type", "Query"), new Tag("name", "ping")));
.get(new MetricID("mp_graphql", new Tag("type", "QUERY"), new Tag("name", "ping"), new Tag("source", "false")));
assertNotNull(metric, "Metrics should be registered eagerly");

String pingRequest = getPayload("{\n" +
Expand Down

0 comments on commit b0fcb0c

Please sign in to comment.