diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2014-05-29 20:31:37 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2014-05-29 20:31:37 -0700 |
commit | f09fc6ab4d9da8c24333b4d96c51c72816e86768 (patch) | |
tree | b0d62407990c35c74a78e957cfb5caaa02085f39 /src/com/p4square/grow/GrowProcessComponent.java | |
parent | d2e16b63849189de8e872452ac101f9ed954c754 (diff) |
Loading config earlier.20140529b
Diffstat (limited to 'src/com/p4square/grow/GrowProcessComponent.java')
-rw-r--r-- | src/com/p4square/grow/GrowProcessComponent.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/com/p4square/grow/GrowProcessComponent.java b/src/com/p4square/grow/GrowProcessComponent.java index 9a7de6f..18b3d5b 100644 --- a/src/com/p4square/grow/GrowProcessComponent.java +++ b/src/com/p4square/grow/GrowProcessComponent.java @@ -41,7 +41,7 @@ public class GrowProcessComponent extends Component { this(new Config()); } - public GrowProcessComponent(Config config) { + public GrowProcessComponent(Config config) throws Exception { // Clients getClients().add(Protocol.FILE); getClients().add(Protocol.HTTP); @@ -49,6 +49,7 @@ public class GrowProcessComponent extends Component { // Prepare mConfig mConfig = config; + mConfig.updateConfig(this.getClass().getResourceAsStream("/grow.properties")); // Frontend GrowFrontend frontend = new GrowFrontend(mConfig); @@ -69,9 +70,6 @@ public class GrowProcessComponent extends Component { @Override public void start() throws Exception { - // Load mConfigs - mConfig.updateConfig(this.getClass().getResourceAsStream("/grow.properties")); - String configDomain = getContext().getParameters().getFirstValue("com.p4square.grow.configDomain"); if (configDomain != null) { mConfig.setDomain(configDomain); |