File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed 
staging/host/commands/cvd/server_command Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 3030#include  " host/commands/cvd/server_command/utils.h" 
3131#include  " host/commands/cvd/types.h" 
3232
33+ #define  ENABLE_CVDR_TRANSLATION  0 
34+ 
3335namespace  cuttlefish  {
3436
3537class  TryAcloudCommand  : public  CvdServerHandler  {
@@ -51,14 +53,17 @@ class TryAcloudCommand : public CvdServerHandler {
5153 * - `cvd` for local instance management, determined by flag 
5254 * `--local-instance`. 
5355 * 
54-  * - Or `cvdr` for remote instance management. 
56+  * - Or `cvdr` for remote instance management (#if ENABLE_CVDR_TRANSLATION) . 
5557 * 
5658 * If the test fails, the command will be handed to the `python acloud CLI`. 
5759 * 
5860 */  
5961 Result<cvd::Response> Handle (const  RequestWithStdio& request) override  {
62+ #if  ENABLE_CVDR_TRANSLATION
6063 auto  res = VerifyWithCvdRemote (request);
6164 return  res.ok () ? res : VerifyWithCvd (request);
65+ #endif 
66+  return  VerifyWithCvd (request);
6267 }
6368
6469 Result<void > Interrupt () override  {
                                 You can’t perform that action at this time. 
               
                  
0 commit comments