File tree 1 file changed +3
-2
lines changed
crates/hdfs-native/minidfs/src/main/java/main
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ public static void main(String args[]) throws Exception {
41
41
}
42
42
MiniKdc kdc = null ;
43
43
44
+ // If an existing token exists, make sure to delete it
45
+ new File ("target/test/delegation_token" ).delete ();
46
+
44
47
Configuration conf = new Configuration ();
45
48
if (flags .contains ("security" )) {
46
49
kdc = new MiniKdc (MiniKdc .createConf (), new File ("target/test/kdc" ));
@@ -157,8 +160,6 @@ public static void main(String args[]) throws Exception {
157
160
DataOutputStream os = new DataOutputStream (new FileOutputStream ("target/test/delegation_token" ));
158
161
creds .writeTokenStorageToStream (os , SerializedFormat .WRITABLE );
159
162
os .close ();
160
- } else {
161
- new File ("target/test/delegation_token" ).delete ();
162
163
}
163
164
}
164
165
You can’t perform that action at this time.
0 commit comments