You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation for the moderate method is currently blocking where in results for new content are only returned to the client after the content is fetched and moderated. This can sometimes take several seconds and results in poor UX. The following changes will remove lag and make the proxy appear a bit more response:
Moderate method should no longer offer content in any circumstance.
The method should immediately return and not block. For new content the method should return an appropriate busy or moderation pending state.
Should the moderation fail due to a temporary failure, the proxy should track the failure and retry after a while.
If repeated failures occur, the proxy should stop attempting moderation and log the error. The tracking state should clear after a predefined interval.
The text was updated successfully, but these errors were encountered:
The implementation for the
moderate
method is currently blocking where in results for new content are only returned to the client after the content is fetched and moderated. This can sometimes take several seconds and results in poor UX. The following changes will remove lag and make the proxy appear a bit more response:The text was updated successfully, but these errors were encountered: