Skip to content

Commit

Permalink
Change where to attempt to load config-aws
Browse files Browse the repository at this point in the history
Co-authored-by: Nate Sutton <[email protected]>
  • Loading branch information
sattvik and Nate Sutton committed Oct 21, 2020
1 parent 5f816f3 commit 713fd1e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ when their default values are used.

## Change Log

### v0.13.4
- Changes where the attempt to load `outpace.config-aws` occurs.

### v0.13.3
- Tries to load `outpace.config-aws` as part of the `outpace.config` namespace

Expand Down
8 changes: 4 additions & 4 deletions src/outpace/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
[clojure.set :as set]
[outpace.config.bootstrap :refer [find-config-source]]))

(try
(require 'outpace.config-aws)
(catch Exception _))

(def generating? false)

(defprotocol Extractable
Expand Down Expand Up @@ -311,3 +307,7 @@
"Equivalent to (defconfig ^:required ...)."
[name]
`(defconfig ~(vary-meta name assoc :required true)))

(try
(require 'outpace.config-aws)
(catch Exception _))

0 comments on commit 713fd1e

Please sign in to comment.