summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java b/jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java
index a9fd2c747ff..1e76f34939f 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/core/ActiveContainer.java
@@ -106,7 +106,7 @@ public class ActiveContainer extends AbstractResource implements CurrentContaine
}
@Override
- public ContainerSnapshot newReference(URI uri) {
+ public ContainerSnapshot newReference(URI uri, Object context) {
String name = bindingSetSelector.select(uri);
if (name == null) {
throw new NoBindingSetSelectedException(uri);
@@ -116,7 +116,7 @@ public class ActiveContainer extends AbstractResource implements CurrentContaine
if (serverBindings == null || clientBindings == null) {
throw new BindingSetNotFoundException(name);
}
- return new ContainerSnapshot(this, serverBindings, clientBindings);
+ return new ContainerSnapshot(this, serverBindings, clientBindings, context);
}
}