diff --git a/.github/workflows/generator-android.yml b/.github/workflows/generator-android.yml index 1335dba..166fdd1 100644 --- a/.github/workflows/generator-android.yml +++ b/.github/workflows/generator-android.yml @@ -397,7 +397,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: bash - continue-on-error: true + continue_on_error: true command: | wget https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/cycle_monitor.diff git apply cycle_monitor.diff @@ -409,6 +409,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: bash + continue_on_error: true command: | wget https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/xoffline.diff git apply xoffline.diff @@ -420,6 +421,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: bash + continue_on_error: true command: | wget https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/hidecm.diff git apply hidecm.diff diff --git a/.github/workflows/generator-windows-x86.yml b/.github/workflows/generator-windows-x86.yml index a62673e..042d38c 100644 --- a/.github/workflows/generator-windows-x86.yml +++ b/.github/workflows/generator-windows-x86.yml @@ -223,7 +223,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/allowCustom.diff -OutFile allowCustom.diff git apply allowCustom.diff diff --git a/.github/workflows/generator-windows.yml b/.github/workflows/generator-windows.yml index f07b431..c784840 100644 --- a/.github/workflows/generator-windows.yml +++ b/.github/workflows/generator-windows.yml @@ -414,7 +414,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/cycle_monitor.diff -OutFile cycle_monitor.diff git apply cycle_monitor.diff @@ -426,7 +426,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/xoffline.diff -OutFile xoffline.diff git apply xoffline.diff @@ -531,7 +531,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri ${{ env.logolink_url }}/get_png?filename=${{ env.logolink_file }}"&"uuid=${{ env.logolink_uuid }} -OutFile ./rustdesk/data/flutter_assets/assets/logo.png diff --git a/.github/workflows/sh-generator-windows.yml b/.github/workflows/sh-generator-windows.yml index d28b3a4..2d73f9d 100644 --- a/.github/workflows/sh-generator-windows.yml +++ b/.github/workflows/sh-generator-windows.yml @@ -339,7 +339,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/cycle_monitor.diff -OutFile cycle_monitor.diff git apply cycle_monitor.diff @@ -351,7 +351,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri https://raw.githubusercontent.com/bryangerlach/rdgen/refs/heads/master/.github/patches/xoffline.diff -OutFile xoffline.diff git apply xoffline.diff @@ -446,7 +446,7 @@ jobs: timeout_minutes: 1 max_attempts: 3 shell: pwsh - continue-on-error: true + continue_on_error: true command: | Invoke-WebRequest -Uri ${{ env.logolink_url }}/get_png?filename=${{ env.logolink_file }}"&"uuid=${{ env.logolink_uuid }} -OutFile ./rustdesk/data/flutter_assets/assets/logo.png diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 3e5994e..19d969d 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -2,7 +2,8 @@ import os # Adjust these values as needed bind = "0.0.0.0:8000" # Host and port for Gunicorn to listen on -workers = 3 # The number of worker processes for concurrency (adjust based on system resources) +workers = 5 # The number of worker processes for concurrency (adjust based on system resources) +threads = 6 activate_base = True # Activate your virtual environment if applicable # Path to your Django project's main WSGI application file (usually manage.py)