mod_tile
mod_tile copied to clipboard
initialising file storage backend debug messages
When running render_list I get the debug message debug: init_storage_backend: initialising file storage backend at: /var/lib/mod_tile to stderr. My config file doesn't use /var/lib/mod_tile, so this message is incorrect
Yes, this is a bug that I noticed as well. It's because that message is output when the LoadTileConfigFile directive is seen, but if ModTileTileDir appears later then the directory will change after the message is output.
I think the refactoring to support multiple storage backends may have fixed this though, as that message is now output when the file storage backend is initialised, which I think will be on the first request - basically it happens the first time tile_translate is called.
render_list doesn't actually read any config files. All parameters are either the hard coded defaults, or you need to set them explicitly on the command line. In the case of the tiledir either with -t or --tile-dir. Does the later not work?
Ah I hadn't noticed this bug was about render_list but when I saw this it was with mod_tile itself in the apache logs.