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

Commit 061af0e3 authored by Svet Ganov's avatar Svet Ganov Committed by Android Git Automerger
Browse files

am c552800b: Merge "Increase bind remote print spooler timeout for eng builds." into lmp-mr1-dev

* commit 'c552800b':
  Increase bind remote print spooler timeout for eng builds.
parents 11735a0b c552800b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Binder;
import android.os.Build;
import android.os.IBinder;
import android.os.ParcelFileDescriptor;
import android.os.RemoteException;
@@ -55,7 +56,8 @@ final class RemotePrintSpooler {

    private static final boolean DEBUG = false;

    private static final long BIND_SPOOLER_SERVICE_TIMEOUT = 10000;
    private static final long BIND_SPOOLER_SERVICE_TIMEOUT =
            ("eng".equals(Build.TYPE)) ? 120000 : 10000;

    private final Object mLock = new Object();