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 format should be an errors key that contains a mapping from file name to error type and description.
For any type of query, store in memory a mapping from package to a mapping from filename to error. If an error occurs while handling a particular file, set the value. If it goes through cleanly, unset the value.
For an async query that triggers an execution of stats, return nothing. For an async query that has some results, return the current mapping of relevant ones minus the ones in progress (since those errors could be stale).
For a sync query, the errors can just be the ones from that execution of stats if one is required and otherwise the current mapping of relevant ones.
The text was updated successfully, but these errors were encountered:
The format should be an
errors
key that contains a mapping from file name to error type and description.For any type of query, store in memory a mapping from package to a mapping from filename to error. If an error occurs while handling a particular file, set the value. If it goes through cleanly, unset the value.
For an async query that triggers an execution of stats, return nothing. For an async query that has some results, return the current mapping of relevant ones minus the ones in progress (since those errors could be stale).
For a sync query, the errors can just be the ones from that execution of stats if one is required and otherwise the current mapping of relevant ones.
The text was updated successfully, but these errors were encountered: