diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-27 14:50:20 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-27 14:50:20 +0000 |
commit | 19c0a532d94d0e01fa30e207831062c16b8e6b28 (patch) | |
tree | 6ae2d7fd8660203335043aaece69d65de8aedeb0 /java/sca/modules/core/src | |
parent | 645a4e2e374d891cf215d11ef1ae2f046d676b08 (diff) |
During rebuild also reset the status of the endpoint reference so it gets rebuilt correctly
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@808440 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/core/src')
-rw-r--r-- | java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeWireImpl.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeWireImpl.java b/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeWireImpl.java index 5fa3e679a0..7dd9eb993a 100644 --- a/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeWireImpl.java +++ b/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/assembly/impl/RuntimeWireImpl.java @@ -520,6 +520,8 @@ public class RuntimeWireImpl implements RuntimeWire { // used at the moment by binding.sca when it resets the // source interface contract for local wires this.chains = null; + + this.endpointReference.setStatus(EndpointReference.NOT_CONFIGURED); // TODO - cheating here as I fixed the RuntimeComponentService code // to call this when it resets the interface contract |