Skip to content

Commit

Permalink
Merge pr #222 initialize config per given env profile - v0.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm authored Dec 2, 2018
2 parents 445daf4 + d8e86b9 commit 06aa9c6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions aah.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,12 @@ func (a *Application) initPath() error {

func (a *Application) initApp() error {
var err error
if err = a.settings.Refresh(a.Config()); err != nil {
return err
}
if err = a.initLog(); err != nil {
return err
}
for event := range a.EventStore().subscribers {
a.EventStore().sortEventSubscribers(event)
}
Expand Down

0 comments on commit 06aa9c6

Please sign in to comment.