Skip to content

Commit

Permalink
Update error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabergma committed Oct 24, 2023
1 parent 1f6b2c4 commit 25668f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rasa/engine/runner/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ def run(
return dict(dask_result)
except KeyError as e:
raise GraphRunError(
f"Could not find key {e} in the graph. Error running runner."
f"Could not find key {e} in the graph. Error running runner. "
f"Please check that you are running bot developed with CALM instead "
f"of bot developed with previous version of dialog management (DM1)."
) from e
except RuntimeError as e:
raise GraphRunError("Error running runner.") from e
Expand Down

0 comments on commit 25668f6

Please sign in to comment.