You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration-tests/src/intTest/java/org/springframework/pulsar/autoconfigure/PulsarFunctionAdministrationIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-pulsar-docs/src/main/asciidoc/pulsar-admin.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,15 @@ The administration implements an interface called `PulsarAdminOperations` and pr
10
10
When you use the Pulsar Spring Boot starter, you get the `PulsarAdministration` auto-configured.
11
11
12
12
By default, the application tries to connect to a local Pulsar instance at `\http://localhost:8080`.
13
-
This can be adjusted by setting the `spring.pulsar.administration.service-url` property to a different value in the form `(http|https)://<host>:<port>`.
13
+
This can be adjusted by setting the `spring.pulsar.admin.service-url` property to a different value in the form `(http|https)://<host>:<port>`.
14
14
15
15
There are many application properties available to configure the client.
16
-
See the {spring-boot-pulsar-config-props}[`spring.pulsar.administration.*`] application properties.
16
+
See the {spring-boot-pulsar-config-props}[`spring.pulsar.admin.*`] application properties.
17
17
18
18
[[pulsar-admin-authentication]]
19
19
=== Authentication
20
20
When accessing a Pulsar cluster that requires authentication, the admin client requires the same security configuration as the regular Pulsar client.
21
-
You can use the aforementioned <<pulsar.adoc#client-authentication,security configuration>> by replacing `spring.pulsar.client` with `spring.pulsar.administration`.
21
+
You can use the aforementioned <<pulsar.adoc#client-authentication,security configuration>> by replacing `spring.pulsar.client` with `spring.pulsar.admin`.
Copy file name to clipboardExpand all lines: spring-pulsar-docs/src/main/asciidoc/pulsar-binder.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,7 @@ Spring Cloud Stream binder for Apache Pulsar comes with an out-of-the-box provis
250
250
When running an application, if the necessary topics are absent, Pulsar will create the topics for you.
251
251
However, this is a basic non-partitioned topic, and if you want advanced features like creating a partitioned topic, you can rely on the topic provisioner in the binder.
252
252
Pulsar topic provisioner uses `PulsarAdministration` from the framework, which uses the `PulsarAdminBuilder.`
253
-
For this reason, you need to set the `spring.pulsar.administration.service-url` property unless you are running Pulsar on the default server and port.
253
+
For this reason, you need to set the `spring.pulsar.admin.service-url` property unless you are running Pulsar on the default server and port.
254
254
255
255
=== Specifying partition count when creating the topic
0 commit comments