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

[3.x] Separate services by namespace #217

Open
rez1dent3 opened this issue Apr 4, 2024 · 0 comments
Open

[3.x] Separate services by namespace #217

rez1dent3 opened this issue Apr 4, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@rez1dent3
Copy link
Member

Now it is impossible to create two identical services with different packages. We need to try to solve this problem.

proto1.proto

syntax = "proto3";
package com.bavix.helloworld1;
service Greeter {
    rpc SayHello (HelloRequest) returns (HelloReply) {}
}

proto2.proto

syntax = "proto3";
package com.bavix.helloworld2;
service Greeter {
    rpc SayHello (HelloRequest) returns (HelloReply) {}
}

Introduce a mode that will make a safe transition from short service names to long ones. It might be worth adding depreacted to the logs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant