Skip to content

Commit

Permalink
Update convert.go
Browse files Browse the repository at this point in the history
  • Loading branch information
lyoung-confluent authored Mar 20, 2024
1 parent e994945 commit 858740f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/converter/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ func convertField(
}
}

if len(field.Description) > 1024 {
field.Description = field.Description[:1024]
}

if field.Type != "RECORD" {
return field, nil
}
Expand Down

0 comments on commit 858740f

Please sign in to comment.