Skip to content

Commit

Permalink
Make Travis Happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Enrico Olivelli - Diennea committed Dec 31, 2018
1 parent 130bc4a commit 17bf5a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void startMiniKdc() throws Exception {
kdc = new MiniKdc(conf, kdcDir.getRoot());
kdc.start();

String localhostName = "localhost.localdomain";
String localhostName = "localhost";
String principalServerNoRealm = "blazingcache/" + localhostName;
String principalServer = "blazingcache/" + localhostName + "@" + kdc.getRealm();
String principalClientNoRealm = "blazingcacheclient/" + localhostName;
Expand Down Expand Up @@ -151,7 +151,7 @@ public void basicTest() throws Exception {

byte[] data = "testdata".getBytes(StandardCharsets.UTF_8);

ServerHostData serverHostData = new ServerHostData("localhost.localdomain", 1234, "test", false, null);
ServerHostData serverHostData = new ServerHostData("localhost", 1234, "test", false, null);
try (CacheServer cacheServer = new CacheServer("ciao", serverHostData)) {
cacheServer.setClientFetchTimeout(1000);
cacheServer.start();
Expand Down

0 comments on commit 17bf5a8

Please sign in to comment.