Get the original headers for the current callback. Works with background callbacks.
(self)
| 282 | @property |
| 283 | @has_context |
| 284 | def headers(self): |
| 285 | """ |
| 286 | Get the original headers for the current callback. |
| 287 | Works with background callbacks. |
| 288 | """ |
| 289 | return _get_from_context("headers", {}) |
| 290 | |
| 291 | @property |
| 292 | @has_context |
nothing calls this directly
no test coverage detected