Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c193cf21 authored by Raphael Kim's avatar Raphael Kim Committed by Android (Google) Code Review
Browse files

Merge "[CDM secure channel] Increase message queue size to 500" into main

parents dc8274f6 cc40a12b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ class SecureTransport extends Transport implements SecureChannel.Callback {

    private volatile boolean mShouldProcessRequests = false;

    private final BlockingQueue<byte[]> mRequestQueue = new ArrayBlockingQueue<>(100);
    private final BlockingQueue<byte[]> mRequestQueue = new ArrayBlockingQueue<>(500);

    SecureTransport(int associationId, ParcelFileDescriptor fd, Context context) {
        super(associationId, fd, context);