Skip to content

Commit

Permalink
fix: オプションを指定しないときに use_bundler=false になる問題の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
morikiyo committed May 1, 2024
1 parent f07f9f6 commit f92f97f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sg_fargate_rails/event_bridge_schedule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def initialize(name, cron, command, container_type, storage_size_gb, use_bundler
@command = command
@container_type = container_type || 'small'
@storage_size_gb = storage_size_gb # sizeInGiB
@use_bundler = use_bundler
@use_bundler = use_bundler.presence || true
end

def create_run_task(group_name:, cluster_arn:, task_definition_arn:, network_configuration:)
Expand Down

0 comments on commit f92f97f

Please sign in to comment.