Skip to content

Commit 02ce44d

Browse files
committed
309
1 parent a459a33 commit 02ce44d

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

AndroidAsync-Kotlin/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,14 @@ dependencies {
4848
api project(':AndroidAsync:AndroidAsync')
4949
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5050

51+
5152
testImplementation 'junit:junit:4.12'
52-
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.50'
53+
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.61'
5354
androidTestImplementation 'androidx.test:runner:1.2.0'
5455
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
5556
}
5657

5758
// upload to maven task
58-
if (System.getenv().I_AM_KOUSH == 'true') {
59+
if (false && System.getenv().I_AM_KOUSH == 'true') {
5960
apply from: '/Users/koush/cfg/maven.gradle'
6061
}

AndroidAsync/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.koushikdutta.async"
33
android:versionCode="308"
4-
android:versionName="3.0.8">
4+
android:versionName="3.0.9">
55

66
<uses-permission android:name="android.permission.INTERNET"/>
77

AndroidAsync/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ android {
5050
}
5151
}
5252

53-
if (false && System.getenv().I_AM_KOUSH == 'true') {
53+
if (System.getenv().I_AM_KOUSH == 'true') {
5454
apply from: 'https://raw.githubusercontent.com/koush/mvn-repo/master/maven.gradle'
5555
}

AndroidAsync/src/com/koushikdutta/async/AsyncServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ public Cancellable connectSocket(final String host, final int port, final Connec
458458

459459
private static ExecutorService newSynchronousWorkers(String prefix) {
460460
ThreadFactory tf = new NamedThreadFactory(prefix);
461-
ThreadPoolExecutor tpe = new ThreadPoolExecutor(1, 4, 10L,
461+
ThreadPoolExecutor tpe = new ThreadPoolExecutor(0, 4, 10L,
462462
TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(), tf);
463463
return tpe;
464464
}

0 commit comments

Comments
 (0)