Skip to content

Commit

Permalink
updated event message (#5011)
Browse files Browse the repository at this point in the history
  • Loading branch information
iknox-fa authored Apr 8, 2022
1 parent 899b0ef commit 581bf51
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changes/unreleased/Fixes-20220407-161134.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
kind: Fixes
body: Make the warning message for a full event deque more descriptive
time: 2022-04-07T16:11:34.614988-05:00
custom:
Author: iknox-fa
Issue: "4962"
PR: "5011"
5 changes: 4 additions & 1 deletion core/dbt/events/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2439,7 +2439,10 @@ class EventBufferFull(WarnLevel):
code: str = "Z048"

def message(self) -> str:
return "Internal event buffer full. Earliest events will be dropped (FIFO)."
return (
"Internal logging/event buffer full."
"Earliest logs/events will be dropped as new ones are fired (FIFO)."
)


@dataclass
Expand Down

0 comments on commit 581bf51

Please sign in to comment.