Skip to content

Commit

Permalink
Fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ronensc committed Feb 20, 2023
1 parent 5b5748e commit 60245a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/pipeline/extract/conntrack/conntrack.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"github.com/netobserv/flowlogs-pipeline/pkg/config"
"github.com/netobserv/flowlogs-pipeline/pkg/operational"
"github.com/netobserv/flowlogs-pipeline/pkg/pipeline/extract"
"github.com/netobserv/flowlogs-pipeline/pkg/pipeline/utils"
"github.com/netobserv/flowlogs-pipeline/pkg/utils"
log "github.com/sirupsen/logrus"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/pipeline/extract/conntrack/conntrack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1007,8 +1007,8 @@ func TestDetectEndConnection(t *testing.T) {
portB := 9002
protocolTCP := 6
hashIdTCP := "705baa5149302fa1"
flTCP1 := newMockFlowLog(ipA, portA, ipB, portB, protocolTCP, 111, 11)
flTCP2 := newMockFlowLog(ipB, portB, ipA, portA, protocolTCP, 222, 22)
flTCP1 := newMockFlowLog(ipA, portA, ipB, portB, protocolTCP, 111, 11, false)
flTCP2 := newMockFlowLog(ipB, portB, ipA, portA, protocolTCP, 222, 22, false)
flTCP2[tcpFlagsFieldName] = FIN_ACK_FLAG

startTime := clk.Now()
Expand Down Expand Up @@ -1078,7 +1078,7 @@ func TestSwapAB(t *testing.T) {
portB := 9002
protocolTCP := 6
hashIdTCP := "705baa5149302fa1"
flTCP1 := newMockFlowLog(ipB, portB, ipA, portA, protocolTCP, 111, 11)
flTCP1 := newMockFlowLog(ipB, portB, ipA, portA, protocolTCP, 111, 11, false)
flTCP1[tcpFlagsFieldName] = SYN_ACK_FLAG

startTime := clk.Now()
Expand Down

0 comments on commit 60245a3

Please sign in to comment.