Skip to content

Commit

Permalink
Don't force exit if ORACLE_HOME is unset
Browse files Browse the repository at this point in the history
  • Loading branch information
camdencheek committed Mar 20, 2019
1 parent 879963c commit f67cb3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.1.5 - 2019-03-19
### Added
- Don't force exit if ORACLE_HOME is unset

## 1.1.4 - 2019-03-19
### Added
- Log error message if ORACLE_HOME is unset
Expand Down
3 changes: 1 addition & 2 deletions src/oracledb.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type argumentList struct {

const (
integrationName = "com.newrelic.oracledb"
integrationVersion = "1.1.4"
integrationVersion = "1.1.5"
)

var (
Expand All @@ -43,7 +43,6 @@ func main() {

if oracleHome := os.Getenv("ORACLE_HOME"); oracleHome == "" {
log.Error("Required argument oracle_home is unset")
os.Exit(1)
}

// parse tablespace whitelist
Expand Down

0 comments on commit f67cb3e

Please sign in to comment.