File tree Expand file tree Collapse file tree
main/java/org/dcache/pool/migration
test/java/org/dcache/pool/json Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1636,9 +1636,7 @@ public String call() {
16361636 }
16371637
16381638 @ Command (name = "hotfile show" ,
1639- description = "Show the current status of the hot-file replication facility, "
1640- + "including whether it is enabled and the values of the 'replicas' "
1641- + "and 'threshold' parameters." ,
1639+ description = "Show the values of the 'replicas' and 'threshold' parameters." ,
16421640 hint = "Show hot-file replication status." )
16431641 public class HotfileShowCommand implements Callable <String > {
16441642
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ public void shouldPrintHotfileReplicationStatus() {
1818 }
1919
2020 String output = sw .toString ();
21- assertTrue ("Output should contain Hot File Replication status" , output .contains ("Hot File Replication : ON" ));
21+ assertTrue ("Output should contain Hot File Replication status" , output .contains ("Hot File Replication : ON" ));
2222
2323 details .setHotFileReplicationEnabled (false );
2424 sw = new StringWriter ();
2525 try (PrintWriter pw = new PrintWriter (sw )) {
2626 details .print (pw );
2727 }
2828 output = sw .toString ();
29- assertTrue ("Output should contain HotFile Replication status" , output .contains ("Hot File Replication : OFF" ));
29+ assertTrue ("Output should contain Hot File Replication status" , output .contains ("Hot File Replication : OFF" ));
3030 }
3131}
You can’t perform that action at this time.
0 commit comments