# HG changeset patch # User Kim Alvefur # Date 1635020699 -7200 # Node ID 515a89dee6aee9b77303512f2416fcdc7f5840f4 # Parent 77bbbd4263d79d79008ab9dd02a2e9136526a542 util.startup: Skip config readability check in migrator (thanks eTaurus) This field is empty for reasons when invoked by prosody-migrator, which threw an error: > bad argument #1 to 'open' (string expected, got nil) diff -r 77bbbd4263d7 -r 515a89dee6ae util/startup.lua --- a/util/startup.lua Sat Oct 23 13:32:01 2021 +0200 +++ b/util/startup.lua Sat Oct 23 22:24:59 2021 +0200 @@ -487,7 +487,7 @@ if not prosody.switched_user then -- Boo! print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err)); - else + elseif prosody.config_file then -- Make sure the Prosody user can read the config local conf, err, errno = io.open(prosody.config_file); --luacheck: ignore 211/errno if conf then