Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding PreUpdateRouting to BaseAspectRoutingResource #413

Merged
merged 13 commits into from
Sep 5, 2024
Prev Previous commit
Next Next commit
Added a comment
  • Loading branch information
Rakhi Agrawal committed Sep 4, 2024
commit 66b5b0a2f6af569a12e9a709a1853ab939e66952
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ protected Task<Void> ingestInternal(@Nonnull SNAPSHOT snapshot,
final AuditStamp auditStamp = getAuditor().requestAuditStamp(getContext().getRawRequestContext());
ModelUtils.getAspectsFromSnapshot(snapshot).forEach(aspect -> {
if (!aspectsToIgnore.contains(aspect.getClass())) {
// if _restliPreUpdateAspectRegistry is not initiated or the aspect is not registered for pre update routing, check if the aspect is registered for aspect routing.
if (_restliPreUpdateAspectRegistry == null || !_restliPreUpdateAspectRegistry.isRegistered(
aspect.getClass())) {
if (getAspectRoutingGmsClientManager().hasRegistered(aspect.getClass())) {
Expand Down
Loading