Skip to content

Commit

Permalink
[QUARKUS-423] Changes to conform to RESTEasy 4.5.7.Final
Browse files Browse the repository at this point in the history
[QUARKUS-423] Changes to conform to RESTEasy 4.5.7.Final

[QUARKUS-398] RESTEasy 4.5.7.Final->4.5.8.Final

Co-authored-by: Alessio Soldano <[email protected]>
  • Loading branch information
ronsigal and asoldano committed Sep 23, 2020
1 parent a00d21c commit 6c08bcd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<properties>
<jandex.version>2.2.1.Final</jandex.version>
<resteasy.version>4.5.6.Final</resteasy.version>
<resteasy.version>4.5.8.Final</resteasy.version>
<opentracing.version>0.31.0</opentracing.version>
<opentracing-jaxrs.version>0.4.1</opentracing-jaxrs.version>
<opentracing-web-servlet-filter.version>0.2.3</opentracing-web-servlet-filter.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

import org.jboss.resteasy.core.ResourceMethodRegistry;
import org.jboss.resteasy.core.ResteasyContext;
import org.jboss.resteasy.links.ClassLinksProvider;
import org.jboss.resteasy.links.ObjectLinksProvider;
import org.jboss.resteasy.links.RESTServiceDiscovery;
import org.jboss.resteasy.links.impl.ClassLinksProvider;
import org.jboss.resteasy.links.impl.ObjectLinksProvider;
import org.jboss.resteasy.spi.Registry;

public final class ResourceLinksProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ private SseEventSourceImpl getEventSource() {
if (executorService != null) {
builder.executor(executorService);
}
SseEventSourceImpl sseEventSource = (SseEventSourceImpl) builder.build();
sseEventSource.setAlwaysReconnect(false);
SseEventSourceImpl sseEventSource = (SseEventSourceImpl) builder.alwaysReconnect(false).build();
return sseEventSource;
}

Expand Down

0 comments on commit 6c08bcd

Please sign in to comment.