We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 129b40f commit 9b6ec4aCopy full SHA for 9b6ec4a
zeppelin-server/src/test/java/org/apache/zeppelin/rest/AbstractTestRestApi.java
@@ -127,6 +127,11 @@ private static void start(boolean withAuth) throws Exception {
127
if (!wasRunning) {
128
System.setProperty(ZeppelinConfiguration.ConfVars.ZEPPELIN_HOME.getVarName(), "../");
129
System.setProperty(ZeppelinConfiguration.ConfVars.ZEPPELIN_WAR.getVarName(), "../zeppelin-web/dist");
130
+
131
+ // some test profile does not build zeppelin-web.
132
+ // to prevent zeppelin starting up fail, create zeppelin-web/dist directory
133
+ new File("../zeppelin-web/dist").mkdirs();
134
135
LOG.info("Staring test Zeppelin up...");
136
ZeppelinConfiguration conf = ZeppelinConfiguration.create();
137
0 commit comments