Merge pull request #4 from open-runtime/aot_monorepo_compat

Update AOT Monorepo Compat
This commit is contained in:
Tsavo Knott 2025-01-03 14:38:52 -05:00 committed by GitHub
commit 6b2e15c007
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
name: grpc
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
version: 4.0.2-wip
version: 4.0.2
repository: https://github.com/grpc/grpc-dart
repository: https://github.com/open-runtime/grpc-dart
environment:
sdk: ^3.5.0

View File

@ -325,7 +325,7 @@ void main() {
});
group('returns error if interceptor blocks request', () {
GrpcError? interceptor(ServiceCall call, ServiceMethod method) {
GrpcError? interceptor(call, method) {
if (method.name == 'Unary') {
return GrpcError.unauthenticated('Request is unauthenticated');
}