diff --git a/modules/dcache-bulk/src/main/java/org/dcache/services/bulk/BulkServiceCommands.java b/modules/dcache-bulk/src/main/java/org/dcache/services/bulk/BulkServiceCommands.java index f43d2acac27..343c1d857ac 100644 --- a/modules/dcache-bulk/src/main/java/org/dcache/services/bulk/BulkServiceCommands.java +++ b/modules/dcache-bulk/src/main/java/org/dcache/services/bulk/BulkServiceCommands.java @@ -183,7 +183,7 @@ public final class BulkServiceCommands implements CellCommandListener { /** * name | class | type | permits */ - private static final String FORMAT_ACTIVITY = "%-20s | %100s | %7s | %10s"; + private static final String FORMAT_ACTIVITY = "%-20s | %100s | %7s"; /** * name | required | description @@ -552,7 +552,7 @@ public String call() throws Exception { return "There are no mapped activities!"; } - return String.format(FORMAT_ACTIVITY, "NAME", "CLASS", "TYPE", "RATE") + return String.format(FORMAT_ACTIVITY, "NAME", "CLASS", "TYPE") + "\n" + activities; } }