From e570f29db79e104659455d999ae074328f9db187 Mon Sep 17 00:00:00 2001 From: Shaan Chander Date: Fri, 18 Sep 2026 14:40:05 -0400 Subject: [PATCH] EBP-3100 : remove PubSub+ branding from distributed tracing samples Uses the official names from the Solace renamed-products page. Also points the connection-timeout comment at the current docs URL; the old PubSub-branded path redirects to the guide home. --- .../GuaranteedPublisherWithCustomPropagation.java | 2 +- .../GuaranteedPublisherWithManualInstrumentation.java | 2 +- .../QueueSubscriberWithManualInstrumentation.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithCustomPropagation.java b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithCustomPropagation.java index d143c78..2c0c2fe 100644 --- a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithCustomPropagation.java +++ b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithCustomPropagation.java @@ -51,7 +51,7 @@ * A sample that shows how to generate a Publisher/send span with Solace OpenTelemetry Integration * for JCSMP. *

- * Setup a Solace PubSub+ Broker and OpenTelemetry Collector as per tutorial > + * Setup a Solace Event Broker and OpenTelemetry Collector as per tutorial > * https://codelabs.solace.dev/codelabs/dt-otel/index.html *

* This is the Publisher in the Publish-Subscribe messaging pattern. diff --git a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithManualInstrumentation.java b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithManualInstrumentation.java index e7aead5..fb627f4 100644 --- a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithManualInstrumentation.java +++ b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/GuaranteedPublisherWithManualInstrumentation.java @@ -48,7 +48,7 @@ * A sample that shows how to generate a Publisher/send span with Solace OpenTelemetry Integration * for JCSMP. *

- * Setup a Solace PubSub+ Broker and OpenTelemetry Collector as per tutorial > + * Setup a Solace Event Broker and OpenTelemetry Collector as per tutorial > * https://codelabs.solace.dev/codelabs/dt-otel/index.html *

* This is the Publisher in the Publish-Subscribe messaging pattern. diff --git a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/QueueSubscriberWithManualInstrumentation.java b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/QueueSubscriberWithManualInstrumentation.java index e3ef47c..840bff9 100644 --- a/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/QueueSubscriberWithManualInstrumentation.java +++ b/src/main/java/com/solace/samples/jcsmp/features/distributedtracing/QueueSubscriberWithManualInstrumentation.java @@ -74,7 +74,7 @@ public static void main(String...args) throws JCSMPException, InterruptedExcepti JCSMPChannelProperties channelProps = new JCSMPChannelProperties(); channelProps.setReconnectRetries(20); // recommended settings channelProps.setConnectRetriesPerHost(5); // recommended settings - // https://docs.solace.com/Solace-PubSub-Messaging-APIs/API-Developer-Guide/Configuring-Connection-T.htm + // https://docs.solace.com/API/API-Developer-Guide/Configuring-Connection-T.htm properties.setProperty(JCSMPProperties.CLIENT_CHANNEL_PROPERTIES, channelProps); final JCSMPSession session; session = JCSMPFactory.onlyInstance().createSession(properties, null, new SessionEventHandler() { @@ -111,7 +111,7 @@ public void handleEvent(Object source, FlowEventArgs event) { } catch (JCSMPErrorResponseException e) { // something else went wrong: queue not exist, queue shutdown, etc. logger.error(e); System.err.printf("%n*** Could not establish a connection to queue '%s': %s%n", queueName, e.getMessage()); - System.err.println("Create queue using PubSub+ Manager WebGUI, and add subscription solace/tracing "); + System.err.println("Create queue using Broker Manager WebGUI, and add subscription solace/tracing "); System.err.println(" or see the SEMP CURL scripts inside the 'semp-rest-api' directory."); // could also try to retry, loop and retry until successfully able to connect to the queue System.err.println("NOTE: see QueueProvision sample for how to construct queue with consumer app.");