Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Cannot delete persistent subscription group with name "." #360

Open
E14 opened this issue Jun 15, 2023 · 0 comments
Open

Cannot delete persistent subscription group with name "." #360

E14 opened this issue Jun 15, 2023 · 0 comments

Comments

@E14
Copy link

E14 commented Jun 15, 2023

It is not possible to remove a persistent connection group with the name .. Other groups can be successfully removed.

Version is 22.10.2.0
Host OS is Windows Server

Reproduce

  1. Connect with a client to the stream foo and the group ID .
  2. Open Admin UI
  3. Persistent Subscriptions, click foo to expand, click delete, delete, ok,

Results in:

  • Failure (tap notification to dismiss)
  • Failed to delete subscription: Not Found

image

Workaround

It is possible to remove them through the grpc client, eg. Java

@Inject
EventStoreDBPersistentSubscriptionsClient persistentEsdbClient;

public void removeGroups() {
	try {
		persistentEsdbClient.deleteToStream("foo", ".").get();
	} catch (Exception e){
		throw new RuntimeException(e);
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant