summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java b/jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java
index 7b72e95ac09..becfa94e71f 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/core/ContainerSnapshot.java
@@ -28,13 +28,13 @@ class ContainerSnapshot extends AbstractResource implements Container {
private final BindingSet<RequestHandler> clientBindings;
ContainerSnapshot(ActiveContainer container, BindingSet<RequestHandler> serverBindings,
- BindingSet<RequestHandler> clientBindings)
+ BindingSet<RequestHandler> clientBindings, Object context)
{
this.timeoutMgr = container.timeoutManager();
this.container = container;
this.serverBindings = serverBindings;
this.clientBindings = clientBindings;
- this.containerReference = container.refer();
+ this.containerReference = container.refer(context);
}
@Override