Skip to content

Commit

Permalink
increase max content length
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhuuu committed Jul 26, 2024
1 parent 1397741 commit ad8297f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class HttpGremlinResponseStreamDecoder extends MessageToMessageDecoder<De

public HttpGremlinResponseStreamDecoder(final MessageSerializerV4<?> serializer, final int maxContentLength) {
this.serializer = serializer;
this.maxContentLength = maxContentLength;
this.maxContentLength = Integer.MAX_VALUE;
}

@Override
Expand Down

0 comments on commit ad8297f

Please sign in to comment.