Return a human readable text showing configuration changes.
(self, with_defaults=False, censored=True)
| 189 | }) |
| 190 | |
| 191 | def humanize(self, with_defaults=False, censored=True): |
| 192 | """Return a human readable text showing configuration changes.""" |
| 193 | return '\n'.join( |
| 194 | f'{key}: {pretty(value, width=50)}' |
| 195 | for key, value in self.table(with_defaults, censored).items()) |
| 196 | |
| 197 | def maybe_warn_deprecated_settings(self): |
| 198 | # TODO: Remove this method in Celery 6.0 |