You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The path_list is just very many paths, properly separated by ":", not running on windows(where ":" is not a delimiter).
The text of the cause is
boost::filesystem::status: File name too long
The most probably cause is the call to boost::filesystem::is_regular_file in PluginLoader::loadPluginsInternal with the entire path_list string. According to the boost documentation, boost::filesystem::is_regular_file uses boost::filesystem::status to determine if the file is regular.
Maybe it is time to remove the check, or at least catch the exception and try to go ahead with the split path_list.
The text was updated successfully, but these errors were encountered:
The path_list is just very many paths, properly separated by ":", not running on windows(where ":" is not a delimiter).
The text of the cause is
The most probably cause is the call to boost::filesystem::is_regular_file in PluginLoader::loadPluginsInternal with the entire path_list string. According to the boost documentation, boost::filesystem::is_regular_file uses boost::filesystem::status to determine if the file is regular.
Maybe it is time to remove the check, or at least catch the exception and try to go ahead with the split path_list.
The text was updated successfully, but these errors were encountered: