I have a `hdfs-site.xml` looks like this: ``` <configuration xmlns:xi="http://www.w3.org/2001/XInclude"> <xi:include href="....../hdfs-site.xml" /> </configuration> ``` It seems that snakebite is not able to read the namenode inside the included `hdfs-site.xml`, thus it complains about ``` No ~/.snakebiterc found, no HADOOP_HOME set and no -n and -p provided ``` Maybe we should use another xml parser instead of `xml.etree.ElementTree`?
I have a
hdfs-site.xmllooks like this:It seems that snakebite is not able to read the namenode inside the included
hdfs-site.xml, thus it complains aboutMaybe we should use another xml parser instead of
xml.etree.ElementTree?