Skip to content

Commit

Permalink
Merge 4d6a532 into cd53c4e
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinaleonr committed May 16, 2022
2 parents cd53c4e + 4d6a532 commit da0a250
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions etl/globals.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,7 @@ var (
// Map from data type to number of files to skip when processing said type.
// It allows us process fewer archives when there is a very high volume of data.
// TODO - this should be loaded from a config.
dataTypeToSkipCount = map[DataType]int{
PCAP: 9,
}
dataTypeToSkipCount = map[DataType]int{}
)

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion etl/globals_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ func TestSkipCount(t *testing.T) {
{
name: "pcap",
dataType: etl.PCAP,
want: 9,
want: 0,
},
{
name: "invalid",
Expand Down

0 comments on commit da0a250

Please sign in to comment.