Open
Description
Websocket messages bypass the existing action dispatch framework, so we don't have common interceptors running. This might cause a variety of issues, particularly with things like tracing, auditing, and credential propagation which expect to have request level context established. We probably don't want to piggyback on existing interceptors since the websockets API is divergent from the actions API and interceptors will likely blow up if they are called in the wrong context, but may need to create a parallel interceptor specifically for websockets.