Skip to content

Commit

Permalink
fix: Zilla Crashes on invalid request payload
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitk-me committed Feb 4, 2025
1 parent 869533f commit c569066
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ scope core

struct EngineConfigWatcherFailedEx extends core::stream::Extension
{
string16 reason;
varstring reason;
}

union EngineEventEx switch (EngineEventType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ scope jwt
struct JwtAuthorizationFailedEx extends core::stream::Extension
{
string8 identity;
string16 reason;
varstring reason;
}

union JwtEventEx switch (JwtEventType)
Expand Down
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;
varstring 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;
varstring 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;
varstring 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;
varstring error;
}

union ProtobufModelEventEx switch (ProtobufModelEventType)
Expand Down

0 comments on commit c569066

Please sign in to comment.