From 65e4927dca339bb3f25c83c95f1bb7f38f9fc9a2 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 1 Jul 2020 05:50:13 -0700 Subject: [PATCH] Drop intended support for "--anonymous" from Arcanist Toolsets Summary: Currently, modern "arc" workflows accept and parse "--anonymous" but don't do anything with it. I intend to move away from anonymous workflows, which only really supported a tiny subset of unusual workflows on open source installs but added significant complexity to login/auth behavior. Drop support for this flag. Test Plan: Grepped for "anonymous", didn't turn up any relevant hits. Differential Revision: https://secure.phabricator.com/D21386 --- src/toolset/ArcanistArcToolset.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/toolset/ArcanistArcToolset.php b/src/toolset/ArcanistArcToolset.php index fb3ceff4..5c1cb377 100644 --- a/src/toolset/ArcanistArcToolset.php +++ b/src/toolset/ArcanistArcToolset.php @@ -16,10 +16,6 @@ final class ArcanistArcToolset extends ArcanistToolset { 'param' => 'token', 'help' => pht('Use a specific authentication token.'), ), - array( - 'name' => 'anonymous', - 'help' => pht('Run workflow as a public user, without authenticating.'), - ), ); }