Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change rule expression to match endpoint types for receiver creator #2661

Merged
merged 7 commits into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint error
  • Loading branch information
bjsignalfx committed Mar 12, 2021
commit 54c2103631f38cc4d6886894a637aeeb8e7b3d09
2 changes: 1 addition & 1 deletion extension/observer/endpoints.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (e *Endpoint) Env() (EndpointEnv, error) {
env["endpoint"] = e.Target

if e.Details.Type() == PodType {
env["type"] = string(e.Details.Type())
env["type"] = string(PodType)
return env, nil
}

Expand Down
2 changes: 1 addition & 1 deletion extension/observer/endpoints_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestEndpointEnv(t *testing.T) {
},
},
want: EndpointEnv{
"type": "pod",
"type": "pod",
"endpoint": "192.68.73.2",
"name": "pod_name",
"labels": map[string]string{
Expand Down