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
This commit is contained in:
Brad Fitzpatrick 2014-05-09 20:23:24 -07:00
parent bf8d6bdb4f
commit bf24666080
1 changed files with 1 additions and 1 deletions

View File

@ -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 {