Skip to content

Commit

Permalink
Merge branch 'main' into renovate/googlecloudplatform-functions-frame…
Browse files Browse the repository at this point in the history
…work-conformance-digest
  • Loading branch information
jrmfg authored Sep 18, 2024
2 parents d65e99c + 9ff4c6d commit ef7fffe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions .github/blunderbuss.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
assign_prs:
- janell-chen
- HKWinterhalter
- kenneth-rosario
- dazuma
- akerekes
- nifflets

assign_issues:
- janell-chen
- HKWinterhalter
- kenneth-rosario
- dazuma
- akerekes
- nifflets

2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/functions_framework/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit ef7fffe

Please sign in to comment.