[
https://issues.apache.org/jira/browse/CAMEL-15064?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17185160#comment-17185160
]
Ramesh Venkitaswaran commented on CAMEL-15064:
----------------------------------------------
I changed my pom to Spring v2.3.2.RELEASE as follows
{code:xml}
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
{code}
I tested it on Java 8 by commenting this out from my pom and using Jdk as
follows
{noformat}
% java -version
openjdk version "1.8.0_262"
OpenJDK Runtime Environment (Zulu 8.48.0.51-CA-macosx) (build 1.8.0_262-b19)
OpenJDK 64-Bit Server VM (Zulu 8.48.0.51-CA-macosx) (build 25.262-b19, mixed
mode)
%
{noformat}
{code:xml}
<!-- <properties>-->
<!-- <java.version>11</java.version>-->
<!-- </properties>-->
{code}
It fails to function on 2.3.2 with both Java 8 and Java 11
> Messages no more received from Google Pubsub
> --------------------------------------------
>
> Key: CAMEL-15064
> URL: https://issues.apache.org/jira/browse/CAMEL-15064
> Project: Camel
> Issue Type: Bug
> Components: camel-google-pubsub
> Affects Versions: 3.2.0
> Environment: * macOS 10.15.4
> * OpenJDK 11.0.6 2020-01-14
> * I've been able to reproduce the issue on Ubuntu 16, same JDK
> Reporter: Jean-Pierre Matsumoto
> Assignee: Omar Al-Safi
> Priority: Major
> Fix For: 3.4.0
>
>
> With Camel 3.2.0, my route does not receive the messages from Google Pubsub.
> The exact same route works well if I downgrade to 3.1.0.
> I've created following test case to reproduce easily the issue:
> {code:java}
> @Component
> public class SimplePubsubRouteBuilder extends RouteBuilder {
> @Override
> public void configure() throws Exception {
> from("google-pubsub://project-id:subs-name")
> .to("log:myLog?showHeaders=true");
> }
> }{code}
> Result with *Camel 3.2.0*: nothing happens, no errors even with DEBUG log
> level.
> Result with *Camel 3.1.0*: error 404 as expected since Pubsub subscription
> path is invalid.
> I've tried to fix the issue myself with no success. But by tracing with
> debugger, I think the issue is because of bad version of Guava library.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)