We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 769b02a commit 84f54b6Copy full SHA for 84f54b6
src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/gui/action/ParseCurlCommandAction.java
@@ -136,7 +136,8 @@ public class ParseCurlCommandAction extends AbstractAction implements MenuCreato
136
137
private Tika createTika() {
138
try {
139
- return new Tika(new TikaConfig(this.getClass().getClassLoader().getResourceAsStream("tika-config.xml")));
+ return new Tika(new TikaConfig(this.getClass().getClassLoader()
140
+ .getResourceAsStream("org/apache/jmeter/protocol/http/gui/action/tika-config.xml")));
141
} catch (TikaException | IOException | SAXException e) {
142
return new Tika();
143
}
0 commit comments