diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 412f79e7f0d9..c7d032e301a4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -32,7 +32,7 @@ Fixed errors - fill slots for image, buttons, quick_replies and attachments in templates - ``rasa train core`` in comparison mode stores the model files compressed (``tar.gz`` files) - +- slot setting in interactive learning with the TwoStageFallbackPolicy [1.1.7] - 2019-07-18 ^^^^^^^^^^^^^^^^^^^^ diff --git a/rasa/core/processor.py b/rasa/core/processor.py index 1b85cfed5ac0..d98ecd4191f3 100644 --- a/rasa/core/processor.py +++ b/rasa/core/processor.py @@ -522,7 +522,7 @@ def _log_action_on_tracker(self, tracker, action_name, events, policy, confidenc # the timestamp would indicate a time before the time # of the action executed e.timestamp = time.time() - tracker.update(e) + tracker.update(e, self.domain) def _get_tracker(self, sender_id: Text) -> Optional[DialogueStateTracker]: sender_id = sender_id or UserMessage.DEFAULT_SENDER_ID