Closed obmarg closed 6 years ago
Try updating to the latest version? On Sat, 3 Mar 2018 at 20:47 Graeme Coupar notifications@github.com wrote:
Similar to #27 https://github.com/tony612/protobuf-elixir/issues/27 - I'm getting a crash when I try to compile the following proto file:
syntax = "proto3"; message RenderRequest { } message RenderResult { string html = 1; } service ElmRender { rpc Render(RenderRequest) returns (RenderResult); }
If I add package elm_render; it works fine.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/tony612/protobuf-elixir/issues/29, or mute the thread https://github.com/notifications/unsubscribe-auth/ABMhG9HOfBiVMKF9brH321x9qpQClL2Fks5tapD6gaJpZM4Sa6DD .
@tony612 I'm seeing this with 0.5.3, which I believe is the latest version?
I see. I’ll look into this later.
@obmarg Could you verify if this problem has been fixed on master?
@tony612 are there any instructions for running from a non-release? I only know how to run w/ an escript installed from hex.
@obmarg mix escript.install github tony612/protobuf-elixir
. You can view doc via mix help escript.install
If it works, I can release a new version.
@tony612 thanks - I'll try and test that tonight when I get home
@tony612 looks like your fix worked. thanks a lot!
Similar to #27 - I'm getting a crash when I try to compile the following proto file:
If I add
package elm_render;
it works fine.