Skip to content

neuro-san 0.6.23

Choose a tag to compare

@d1donlydfink d1donlydfink released this 09 Jan 19:32
· 277 commits to main since this release
dc9bce8

What's Changed

Note:
There is a small logging change that shifts the log message telling you when the next read of the manifest files will be.
This used to be at INFO level and now it is at DEBUG level. This increases the signal-to-noise for the vast majority of users
in default logs where the periodicity for checking manifest files is ~1 second by making it disappear by default.
If you cared about this message, please modify the loggers section of your logging.json for your deployment accordingly with something like:

    "neuro_san.service.watcher.registries.registry_storage_updater.RegistryStorageUpdater": {
        "level": "DEBUG",
        "handlers": [
            "http_console"
        ],
        "propagate": false
    },

See https://docs.python.org/3/library/logging.config.html#dictionary-schema-details
as to how this file can be configured for your own needs. Examples there are provided in YAML,
but these can be easily translated to JSON (which we prefer).
Another good resource: https://docs.python.org/3/howto/logging-cookbook.html

Full Changelog: 0.6.22...0.6.23