You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/07/11 20:13:49 UTC

incubator-iota git commit: typesafe config : resolving substitution variables

Repository: incubator-iota
Updated Branches:
  refs/heads/master acd517d64 -> 244502ee0


typesafe config : resolving substitution variables


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/244502ee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/244502ee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/244502ee

Branch: refs/heads/master
Commit: 244502ee0cce6db01efc6d551a01feb26df772cc
Parents: acd517d
Author: tonyfaustini <to...@yahoo.com>
Authored: Mon Jul 11 13:13:42 2016 -0700
Committer: tonyfaustini <to...@yahoo.com>
Committed: Mon Jul 11 13:13:42 2016 -0700

----------------------------------------------------------------------
 fey-core/src/main/scala/org/apache/iota/fey/Utils.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/244502ee/fey-core/src/main/scala/org/apache/iota/fey/Utils.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/main/scala/org/apache/iota/fey/Utils.scala b/fey-core/src/main/scala/org/apache/iota/fey/Utils.scala
index 026bf89..fd24955 100644
--- a/fey-core/src/main/scala/org/apache/iota/fey/Utils.scala
+++ b/fey-core/src/main/scala/org/apache/iota/fey/Utils.scala
@@ -211,7 +211,7 @@ object CONFIG{
           log.warn(s"No user configuration defined. Check if your configuration path $path is right.")
           ConfigFactory.load()
       }
-    }.getConfig("fey-global-configuration")
+    }.getConfig("fey-global-configuration").resolve()
 
       CHECKPOINT_DIR = app.getString("checkpoint-directory")
       JSON_REPOSITORY = app.getString("json-repository")