Skip to content

Commit

Permalink
Merge branch 'featbit:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
deleteLater authored Jan 9, 2024
2 parents 1ed81e8 + 0a213b6 commit 65a56c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public async Task Handle(OnFeatureFlagDeleted notification, CancellationToken ca
await _cache.DeleteFlagAsync(envId, flagId);

// handle webhooks
await _webhookHandler.HandleAsync(notification.Flag, notification.DataChange, notification.OperatorId);
_ = _webhookHandler.HandleAsync(notification.Flag, notification.DataChange, notification.OperatorId);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public async Task Handle(OnSegmentDeleted notification, CancellationToken cancel
await _cache.DeleteSegmentAsync(envId, segmentId);

// handle webhooks
await _webhookHandler.HandleAsync(notification.Segment, notification.DataChange, notification.OperatorId);
_ = _webhookHandler.HandleAsync(notification.Segment, notification.DataChange, notification.OperatorId);
}
}

0 comments on commit 65a56c2

Please sign in to comment.