From 910212b3ae66cd7611c2fc79cc9e5fb2ce7826ff Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 9 Jan 2022 13:53:38 +0530 Subject: Raise timeouts for Crowdin task again (#1652) * build-logic: raise HTTP timeouts for Crowdin again * github: allow running Crowdin job manually --- .github/workflows/sync_crowdin.yml | 1 + .../automation-plugins/src/main/kotlin/crowdin/CrowdinPlugin.kt | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index 8f4c6030..651cd603 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -1,5 +1,6 @@ name: Sync localisations from Crowdin on: + workflow_dispatch: schedule: - cron: '0 0 * * 6' diff --git a/build-logic/automation-plugins/src/main/kotlin/crowdin/CrowdinPlugin.kt b/build-logic/automation-plugins/src/main/kotlin/crowdin/CrowdinPlugin.kt index c6542725..f80d2ad4 100644 --- a/build-logic/automation-plugins/src/main/kotlin/crowdin/CrowdinPlugin.kt +++ b/build-logic/automation-plugins/src/main/kotlin/crowdin/CrowdinPlugin.kt @@ -49,10 +49,10 @@ class CrowdinDownloadPlugin : Plugin { } val client = OkHttpClient.Builder() - .connectTimeout(5, TimeUnit.SECONDS) - .writeTimeout(5, TimeUnit.SECONDS) - .readTimeout(5, TimeUnit.SECONDS) - .callTimeout(10, TimeUnit.SECONDS) + .connectTimeout(5, TimeUnit.MINUTES) + .writeTimeout(5, TimeUnit.MINUTES) + .readTimeout(5, TimeUnit.MINUTES) + .callTimeout(10, TimeUnit.MINUTES) .build() val url = CROWDIN_BUILD_API_URL.format(projectName, login.get(), key.get()) val request = Request.Builder().url(url).get().build() -- cgit v1.2.3