Skip to content

Commit

Permalink
fix: Zilla Crashes on invalid request payload (#1395)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitk-me authored Feb 4, 2025
1 parent cf16ddb commit 88c9a80
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ scope avro_model

struct AvroModelValidationFailedEx extends core::stream::Extension
{
string8 error;
string16 error;
}

union AvroModelEventEx switch (AvroModelEventType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ scope core_model

struct CoreModelValidationFailedEx extends core::stream::Extension
{
string8 error;
string16 error;
}

union CoreModelEventEx switch (CoreModelEventType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ scope json_model

struct JsonModelValidationFailedEx extends core::stream::Extension
{
string8 error;
string16 error;
}

union JsonModelEventEx switch (JsonModelEventType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ scope protobuf_model

struct ProtobufModelValidationFailedEx extends core::stream::Extension
{
string8 error;
string16 error;
}

union ProtobufModelEventEx switch (ProtobufModelEventType)
Expand Down

0 comments on commit 88c9a80

Please sign in to comment.