Skip to content

Commit 156cb2b

Browse files
committed
Try moving token deletion to earlier
1 parent 5d63731 commit 156cb2b

File tree

1 file changed

+3
-2
lines changed
  • crates/hdfs-native/minidfs/src/main/java/main

1 file changed

+3
-2
lines changed

crates/hdfs-native/minidfs/src/main/java/main/Main.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ public static void main(String args[]) throws Exception {
4141
}
4242
MiniKdc kdc = null;
4343

44+
// If an existing token exists, make sure to delete it
45+
new File("target/test/delegation_token").delete();
46+
4447
Configuration conf = new Configuration();
4548
if (flags.contains("security")) {
4649
kdc = new MiniKdc(MiniKdc.createConf(), new File("target/test/kdc"));
@@ -157,8 +160,6 @@ public static void main(String args[]) throws Exception {
157160
DataOutputStream os = new DataOutputStream(new FileOutputStream("target/test/delegation_token"));
158161
creds.writeTokenStorageToStream(os, SerializedFormat.WRITABLE);
159162
os.close();
160-
} else {
161-
new File("target/test/delegation_token").delete();
162163
}
163164
}
164165

0 commit comments

Comments
 (0)