When a HTTP2 server has been configured to push a CSS page along with a request for a certain HTML page, it will send a PUSH_PROMISE frame to let the client know the push is coming.
If the CSS file is not found or cannot be read, etc. What should the server do? Should it send a 404 response on the stream for the PUSH_PROMISE, should it just do nothing, or is there some other way to handle a promise when the file is unavailable?