Remove some accidentally leaked `q.Q()` calls from earlier debugging.x
This commit is contained in:
parent
59925478c3
commit
4003c47c71
|
@ -6,7 +6,6 @@ import (
|
||||||
consulapi "github.com/hashicorp/consul/api"
|
consulapi "github.com/hashicorp/consul/api"
|
||||||
"github.com/hashicorp/errwrap"
|
"github.com/hashicorp/errwrap"
|
||||||
"github.com/hashicorp/terraform/helper/schema"
|
"github.com/hashicorp/terraform/helper/schema"
|
||||||
"github.com/y0ssar1an/q"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -160,10 +159,7 @@ func dataSourceConsulCatalogServiceRead(d *schema.ResourceData, meta interface{}
|
||||||
|
|
||||||
l := make([]interface{}, 0, len(services))
|
l := make([]interface{}, 0, len(services))
|
||||||
|
|
||||||
q.Q(services)
|
|
||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
q.Q(service)
|
|
||||||
|
|
||||||
const defaultServiceAttrs = 13
|
const defaultServiceAttrs = 13
|
||||||
m := make(map[string]interface{}, defaultServiceAttrs)
|
m := make(map[string]interface{}, defaultServiceAttrs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue