Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

list_topics does not list partitioned topics #2593

Closed
hrncek opened this issue May 21, 2018 · 5 comments
Closed

list_topics does not list partitioned topics #2593

hrncek opened this issue May 21, 2018 · 5 comments
Assignees
Labels
bug This issue requires a change to an existing behavior in the product in order to be resolved. Client This issue points to a problem in the data-plane of the library. customer-reported Issues that are reported by GitHub users external to the Azure organization. Service Bus
Milestone

Comments

@hrncek
Copy link

hrncek commented May 21, 2018

from azure.servicebus import ServiceBusService, Message

bus = ServiceBusService(......)

topics = bus.list_topics()

I can see topics which have partitioned false, but not the one which have partitioned true

@annatisch
Copy link
Member

Thanks @hrncek - we are currently building a new AMQP-based service bus Python SDK, so we are not actively working on this legacy SDK.
However I will be sure to test this scenario on the new SDK, and when the new SDK goes into preview I will update this issue thread.

@annatisch annatisch self-assigned this May 21, 2018
@bsiegel bsiegel added the Service Attention Workflow: This issue is responsible by Azure service team. label Sep 26, 2018
@annatisch
Copy link
Member

It looks like this is probably the result of the SDK pointing to an old API version.
The new SDK will target the latest API version by default which will likely resolve this.

@annatisch annatisch removed the Service Attention Workflow: This issue is responsible by Azure service team. label Dec 6, 2018
@lmazuel lmazuel assigned annatisch and unassigned annatisch Jan 2, 2019
@annatisch
Copy link
Member

This has been added as issue #4247 to update the control plane API version to support getting partitioned queues.
It will be updated in the next preview release of the Service Bus SDK.

@lmazuel lmazuel added the Client This issue points to a problem in the data-plane of the library. label Apr 9, 2019
@ramya-rao-a ramya-rao-a added the customer-reported Issues that are reported by GitHub users external to the Azure organization. label May 4, 2020
@lmazuel lmazuel added the bug This issue requires a change to an existing behavior in the product in order to be resolved. label May 4, 2020
@ramya-rao-a ramya-rao-a assigned yunhaoling and unassigned annatisch May 4, 2020
@ramya-rao-a ramya-rao-a modified the milestones: Backlog, [2020] June May 4, 2020
@yunhaoling
Copy link
Contributor

Hi @hrncek , sorry for not getting to you sooner.

Could you please try installing azure-servicebus v0.50 to see if the problem get resolved on your side? It should be able to list all the topics.

in v0.50, you can list topics by this:

from azure.servicebus import ServiceBusClient
conn_str = "<your connection string>"

sb_client = ServiceBusClient.from_connection_string(CONN_STRING)
topics = sb_client .list_topics()

Looking forward to your feedback.

@yunhaoling
Copy link
Contributor

Hey @hrncek , I'm closing the issue assuming that problem has been addressed.

Feel free to re-open if the problem still exists.

@github-actions github-actions bot locked and limited conversation to collaborators Apr 13, 2023
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
bug This issue requires a change to an existing behavior in the product in order to be resolved. Client This issue points to a problem in the data-plane of the library. customer-reported Issues that are reported by GitHub users external to the Azure organization. Service Bus
Projects
None yet
Development

No branches or pull requests

6 participants