You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by "ble (via GitHub)" <gi...@apache.org> on 2023/10/06 15:25:36 UTC

[PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

ble opened a new pull request, #713:
URL: https://github.com/apache/pulsar-site/pull/713

   This PR renames 2 copies of 1 doc, changing the end of it from `use-case.md` to `use-cases.md` to fix internal links.
   
   I found that one link to that doc was broken (Check the 2nd link under the [Related topics heading linked here](https://pulsar.apache.org/docs/next/concepts-broker-load-balancing-concepts/#related-topics) and then confirmed that the file was currently named `...use-case.md` while all links to it point at `...use-cases.md`.
   
   This PR fixes #21306
   - [ ] `doc` <!-- Your PR contains doc changes. Please attach the local preview screenshots (run `./preview.sh` at root path) to your PR description, or else your PR might not get merged. -->


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1750899039

   @ble Please add the following content to your PR description and select a checkbox:
   ```
   - [ ] `doc` <!-- Your PR contains doc changes -->
   - [ ] `doc-required` <!-- Your PR changes impact docs and you will update later -->
   - [ ] `doc-not-needed` <!-- Your PR changes do not impact docs -->
   - [ ] `doc-complete` <!-- Docs have been already added -->
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "ble (via GitHub)" <gi...@apache.org>.
ble commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1750898357

   Quick integrity checking, just on the filesystem:
   ```
   pulsar-site % # Let's search for all instances of 'broker-load-balancing-use-case' or 'broker-load-balancing-use-cases' in the docs:
   pulsar-site % rg 'broker-load-balancing-use-cases?'versioned_docs/version-3.1.x/concepts-broker-load-balancing-overview.md
   32:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-quick-start.md
   582:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-benefits.md
   45:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-use-case.md
   2:id: concepts-broker-load-balancing-use-cases
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-features.md
   19:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-concepts.md
   559:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-migration.md
   162:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_docs/version-3.1.x/concepts-broker-load-balancing-types.md
   39:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   sidebars.json
   34:            "concepts-broker-load-balancing-use-cases",
   
   docs/concepts-broker-load-balancing-migration.md
   162:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-features.md
   19:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-use-case.md
   2:id: concepts-broker-load-balancing-use-cases
   
   docs/concepts-broker-load-balancing-overview.md
   32:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-concepts.md
   559:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-quick-start.md
   582:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-benefits.md
   45:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   docs/concepts-broker-load-balancing-types.md
   39:- To discover different usage scenarios, see [Broker load balancing | Use cases](./concepts-broker-load-balancing-use-cases.md).
   
   versioned_sidebars/version-3.1.x-sidebars.json
   34:            "concepts-broker-load-balancing-use-cases",
   pulsar-site % # What do you know, in every instance it's 'use-cases', not 'use-case'.
   ```
   
   ```
   # Now, is that the name of the file that we actually have?
   pulsar-site % find . | rg 'broker-load-balancing-use-cases?'
   ./docs/concepts-broker-load-balancing-use-case.md
   ./versioned_docs/version-3.1.x/concepts-broker-load-balancing-use-case.md
   % # No, all the files are named `use-case.md`.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "ble (via GitHub)" <gi...@apache.org>.
ble commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1751099516

   # Previewing docs on **main** branch:
   ## Hovering over one of these (broken) cross-document links:
   <img width="1094" alt="image" src="https://github.com/apache/pulsar-site/assets/536767/12eb41f8-550a-4be4-9d86-7977eca7a3df">
   
   ## After navigating by that link:
   <img width="1094" alt="image" src="https://github.com/apache/pulsar-site/assets/536767/1778ff83-16a2-456d-a78e-1cb15269d73e">
   
   # Previewing docs on **PR** branch:
   ## Hovering over one of these cross-document links:
   <img width="1094" alt="image" src="https://github.com/apache/pulsar-site/assets/536767/daff583d-582c-48ad-9c13-2261ff53d2f1">
   
   ## After navigating by that link:
   <img width="1094" alt="image" src="https://github.com/apache/pulsar-site/assets/536767/3a1c42ad-ad68-4db2-85ab-e28f2bfcd847">
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "Technoboy- (via GitHub)" <gi...@apache.org>.
Technoboy- merged PR #713:
URL: https://github.com/apache/pulsar-site/pull/713


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "ble (via GitHub)" <gi...@apache.org>.
ble commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1750915156

   I will try using `preview.sh` and posting screenshots after I get yarn installed 😉


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "ble (via GitHub)" <gi...@apache.org>.
ble commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1751112268

   Docusaurus agrees that the links are not correct 🦖😊:
   ![image](https://github.com/apache/pulsar-site/assets/536767/fa1f9096-8b8e-4132-afac-5ad9812ce3a9)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] [fix][doc] Fix links to Broker Load Balancing Use Cases doc by renaming it. [pulsar-site]

Posted by "Technoboy- (via GitHub)" <gi...@apache.org>.
Technoboy- commented on PR #713:
URL: https://github.com/apache/pulsar-site/pull/713#issuecomment-1751624580

   Thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org