Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
Update to latest datadog-agent hash; fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
derekwbrown committed Jan 17, 2018
1 parent c6640f2 commit 5d1af00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package: github.com/DataDog/datadog-process-agent
import:
- package: github.com/DataDog/datadog-agent
vcs: git
version: db/support_no_docker
version: db/merge_no_docker
repo: git@github.com:DataDog/datadog-agent.git
- package: github.com/DataDog/agent-payload
- package: github.com/DataDog/gopsutil
Expand Down
2 changes: 1 addition & 1 deletion util/container/containers_nodocker.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import "github.com/DataDog/datadog-agent/pkg/util/docker"
// GetContainers is the unique method that returns all containers on the host (or in the task)
// and that other agents can consume so that we don't have to convert all containers to the format.
func GetContainers() ([]*docker.Container, error) {
return *docker.Container{}, nil
return make([]*docker.Container, 0), nil
}

0 comments on commit 5d1af00

Please sign in to comment.