Skip to content

Commit

Permalink
Fix connection ingestion typo
Browse files Browse the repository at this point in the history
  • Loading branch information
noboruma committed Mar 1, 2024
1 parent 78c45d8 commit 1a61939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepfence_server/ingesters/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ func (nc *neo4jIngester) PushToDBSeq(batches ReportIngestionData, session neo4j.
r.right_pids = coalesce(r.right_pids, []) + pids.right,
r.local_ports = coalesce(r.local_ports, []) + pids.local_port,
r.left_ips = coalesce(r.left_ips, []) + pids.left_ip,
r.right_ips = coalesce(r.right_ips, []) + pids.rigth_ip`,
r.right_ips = coalesce(r.right_ips, []) + pids.right_ip`,
map[string]interface{}{"batch": batches.EndpointEdgesBatch}); err != nil {
return err
}
Expand Down

0 comments on commit 1a61939

Please sign in to comment.