More descriptive gRPC schema errors if possible

Bug
It seems like right now some schemas may fail to import for some random reason. All the error gives is "invalid format". I've validated the file using protoc and it completely builds the file to the proper language.
Is it possible to give a more in-depth error on what exactly is going on here?
Version 2024.6.6 (20240618.001507)

Looking more in depth now it seems like the file itself was not the problem, but the fact that I had no url set in the request before trying to import the proto file. The "invalid format" here makes you think that the proto file is incorrectly formatted.
I was going to say, this looks a URL-formatting error from when Yaak tries to perform reflection on the schema. I'll make this more clear
This error is improved in 2024.7.0-beta.2
Can i get more information, what happened?
An example of a proto-file:
So… problem with import
import "google/protobuf/struct.proto";Vasilii: This seems to work on the Mac release. Let me test on Windows.
Gregory Schier
is there a debug log recording what command is used in the call protoc?
Vasilii: There is not, but I just added more logging in my dev branch and am just testing a fix now (I was able to reproduce) 👍🏼
Gregory Schier
thx in beta.8 - fixed
but for "server reflection" it doesn't work. loading all the time (see gif)
Vasilii: Glad it's fixed! Does your server support reflection? Just to clarify, you can send gRPC calls to your server but reflection hangs forever?
Gregory Schier
yes, for example grpccox (https://github.com/gusaul/grpcox) - correct, detected by reflection (see pic)
when I add a protoc file, the request is sent successfully (but there is a problem with the big response - this is written here https://yaak.canny.io/feedback/p/grpc-freezed-on-big-response)
with grpccox everything works as expected
https://yaak.app/blog/2024.7.0