Skip to content

Commit

Permalink
Remove redundant quotes around ENV var (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Khaertdinov authored and timurvafin committed Jul 30, 2016
1 parent 80e25fd commit df883c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Minor improvements in newrelick.yml
- Update Ruby to 2.3.1
- Update bin/setup script to clean old log files and tmp directory
- Update [nokogiri gem](https://github.com/sparklemotion/nokogiri)
Expand Down
4 changes: 2 additions & 2 deletions config/newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ common: &default_settings
# You must specify the license key associated with your New Relic
# account. This key binds your Agent's data to your account in the
# New Relic service.
license_key: '<%= ENV["NEW_RELIC_LICENSE_KEY"] %>'
license_key: <%= ENV["NEW_RELIC_LICENSE_KEY"] %>

# Agent Enabled (Ruby/Rails Only)
# Use this setting to force the agent to run or not run.
Expand Down Expand Up @@ -224,4 +224,4 @@ production:
staging:
<<: *default_settings
monitor_mode: true
app_name: <%= ENV["NEW_RELIC_APP_NAME"] %> (Staging)
app_name: <%= ENV["NEW_RELIC_APP_NAME"] %> (Staging)

0 comments on commit df883c3

Please sign in to comment.