From 6bf1dc0888707a42795afc20c83eb8c19cf7e6d3 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Wed, 13 May 2020 12:21:04 -0700 Subject: [PATCH] [rllib] [hotfix] Build broken due to merge conflict: MixInReplay has no attribute buffer --- rllib/execution/replay_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rllib/execution/replay_ops.py b/rllib/execution/replay_ops.py index 516505dd1..d2db8f053 100644 --- a/rllib/execution/replay_ops.py +++ b/rllib/execution/replay_ops.py @@ -156,7 +156,7 @@ class MixInReplay: def __call__(self, sample_batch): # Put in replay buffer if enabled. - self.buffer.add_batch(sample_batch) + self.replay_buffer.add_batch(sample_batch) # Proportional replay. output_batches = [sample_batch]