diff --git a/.github/blunderbuss.yml b/.github/blunderbuss.yml index 8c380021..8b8f4c83 100644 --- a/.github/blunderbuss.yml +++ b/.github/blunderbuss.yml @@ -1,11 +1,10 @@ assign_prs: - - janell-chen - - HKWinterhalter - - kenneth-rosario - dazuma + - akerekes + - nifflets assign_issues: - - janell-chen - - HKWinterhalter - - kenneth-rosario - dazuma + - akerekes + - nifflets + diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 7f165c63..35b8607f 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"] + ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] steps: - name: Harden Runner uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index f6167cfe..aa7a717f 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"] + ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] flags: ["--only --test-unit"] include: - os: ubuntu-latest diff --git a/lib/functions_framework/cli.rb b/lib/functions_framework/cli.rb index 7118f618..f6f00d71 100644 --- a/lib/functions_framework/cli.rb +++ b/lib/functions_framework/cli.rb @@ -98,10 +98,10 @@ def parse_args argv # rubocop:disable Metrics/MethodLength,Metrics/AbcSize op.on "-e", "--environment ENV", "Set the Rack environment" do |val| @env = val end - op.on "--min-threads NUM", "Set the minimum threead pool size" do |val| + op.on "--min-threads NUM", "Set the minimum thread pool size" do |val| @min_threads = val end - op.on "--max-threads NUM", "Set the maximum threead pool size" do |val| + op.on "--max-threads NUM", "Set the maximum thread pool size" do |val| @max_threads = val end op.on "--[no-]detailed-errors", "Set whether to show error details" do |val|