Update client-side max envelope size to 256KB to match server.

This commit is contained in:
Greyson Parrelli 2022-02-24 10:20:41 -05:00 committed by Cody Henthorne
parent ff95319559
commit c296a28a4a

View file

@ -127,7 +127,7 @@ public class ApplicationDependencyProvider implements ApplicationDependencies.Pr
Optional.of(new SecurityEventListener(context)),
provideClientZkOperations().getProfileOperations(),
SignalExecutors.newCachedBoundedExecutor("signal-messages", 1, 16, 30),
ByteUnit.KILOBYTES.toBytes(512),
ByteUnit.KILOBYTES.toBytes(256),
FeatureFlags.okHttpAutomaticRetry());
}