diff --git a/doc/admin-guide/plugins/slice.en.rst b/doc/admin-guide/plugins/slice.en.rst index b16f338e7eb..7f5bc850ea8 100644 --- a/doc/admin-guide/plugins/slice.en.rst +++ b/doc/admin-guide/plugins/slice.en.rst @@ -113,17 +113,6 @@ The slice plugin supports the following options:: Requires setting up an intermediate loopback remap rule. -r for short - --throttle (optional) - Under certain circumstances where many contiguous slices are in - RAM cache ATS will aggressively try to push these through the - slice plugin. The downside of this is that all these contiguous - slices end up being marked as fresh even if the downstream - client aborts. This option keeps track of how much data the - client has already passed down and slows down issuing new - slice requests. - Normally leave this off. - -o for short - --prefetch-count= (optional) Default is 0 Prefetches successive 'n' slice block requests in the background diff --git a/plugins/experimental/slice/Config.cc b/plugins/experimental/slice/Config.cc index 5d9b66f07f8..964dad362fc 100644 --- a/plugins/experimental/slice/Config.cc +++ b/plugins/experimental/slice/Config.cc @@ -122,7 +122,7 @@ Config::fromArgs(int const argc, char const *const argv[]) // getopt assumes args start at '1' so this hack is needed char *const *argvp = (const_cast(argv) - 1); for (;;) { - int const opt = getopt_long(argc + 1, argvp, "b:de:i:lop:r:t:", longopts, nullptr); + int const opt = getopt_long(argc + 1, argvp, "b:de:i:lp:r:t:", longopts, nullptr); if (-1 == opt) { break; }