Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Commit

Permalink
Added changelog update
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Oswalt <[email protected]>
  • Loading branch information
Mierdin committed Feb 4, 2019
1 parent 7eee657 commit 3185bab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## In development

- Fixed GC goroutine; make GC interval configurable [#63](https://github.com/nre-learning/syringe/pull/63/files)

## 0.2.0 - January 24, 2019

Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func LoadConfigVars() (*SyringeConfig, error) {

gc, err := strconv.Atoi(os.Getenv("SYRINGE_GC_INTERVAL"))
if gc == 0 || err != nil {
config.GCInterval = 5
config.GCInterval = 30
} else {
config.GCInterval = gc
}
Expand Down

0 comments on commit 3185bab

Please sign in to comment.