Skip to content

Commit

Permalink
fix redis download
Browse files Browse the repository at this point in the history
  • Loading branch information
jetoile committed May 18, 2018
1 parent 1a769de commit 4e1864c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ public class EmbeddedRedisInstaller {
private String tmpDir;
private boolean forceCleanupInstallationDirectory;

RedisInstaller redisInstaller = new RedisInstaller(version, downloadUrl, forceCleanupInstallationDirectory, tmpDir);
private RedisInstaller redisInstaller = null;

EmbeddedRedisInstaller(String downloadUrl, String version, String tmpDir, boolean forceCleanupInstallationDirectory) {
redisInstaller = new RedisInstaller(version, downloadUrl, forceCleanupInstallationDirectory, tmpDir);
this.downloadUrl = downloadUrl;
this.version = version;
this.tmpDir = tmpDir;
Expand Down

0 comments on commit 4e1864c

Please sign in to comment.