Skip to content

Commit

Permalink
Remove is_new backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 4, 2014
1 parent 18fe2dd commit 9a0d90a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
Expand Up @@ -16,6 +16,7 @@ Backwards Incompatible Changes
- The Search API has been rewritten and now powers the entire stream.
- Removed Event.{logger,site,logger,level,culprit} references/columns. Legacy attributes for transitional behavior are available.
- Removed Project.owner.
- `is_new` in post_process will *only* be set if the event is brand new

Version 6.4.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/event_manager.py
Expand Up @@ -332,7 +332,7 @@ def save(self, project, raw=False):
post_process_group.delay(
group=group,
event=event,
is_new=is_new or is_regression, # backwards compat
is_new=is_new,
is_sample=is_sample,
is_regression=is_regression,
)
Expand Down

0 comments on commit 9a0d90a

Please sign in to comment.