Skip to content

Commit

Permalink
Merge pull request #2456 from cloudnativedaysjp/takaishi-patch-1
Browse files Browse the repository at this point in the history
fix: cannot get review app number
  • Loading branch information
jacopen authored Nov 25, 2024
2 parents cf4368a + 2fb54ea commit 302ad4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/helpers/env_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def env_name
def review_app_number
m = ENV['DREAMKAST_NAMESPACE'].match(/dreamkast-dev-dk-(.*)-dk/)
if m
m[1]
m[1].to_i
else
raise('cannot get review app number')
0
end
end

Expand Down

0 comments on commit 302ad4d

Please sign in to comment.