From bf2466608058e605bcf927790071a90a9668f3dd Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 9 May 2014 20:23:24 -0700 Subject: [PATCH] search: don't default to describe depth 4 anymore Should no longer be necessary, and actually harmful often. But this might break something. I can't find anything, though. We'll see. Change-Id: I2b798a893100031b26251b0de7fa31ea5c4774d8 --- pkg/search/describe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/search/describe.go b/pkg/search/describe.go index 8551f623e..af3a74570 100644 --- a/pkg/search/describe.go +++ b/pkg/search/describe.go @@ -609,7 +609,7 @@ func (dr *DescribeRequest) depth() int { if dr.Depth > 0 { return dr.Depth } - return 4 + return 1 } func (dr *DescribeRequest) maxDirChildren() int {