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
hadoop_utils.PathFinder.hadoop_params could be a bit more verbose about failed parsing attempts (which file could not be parsed and why). Something like:
try:
params.update(parse_hadoop_conf_file(fn))
- except (IOError, HadoopXMLError):+ except (IOError, HadoopXMLError) as e:+ print("could not parse %s: %r" % (fn, e))
pass # silently ignore, as in Hadoop
But done properly, i.e., via a warning or log message.
The text was updated successfully, but these errors were encountered:
hadoop_utils.PathFinder.hadoop_params
could be a bit more verbose about failed parsing attempts (which file could not be parsed and why). Something like:But done properly, i.e., via a warning or log message.
The text was updated successfully, but these errors were encountered: