Skip to content

Commit c3406a8

Browse files
authored
Relying on a bash script for license check. (#1681)
Closes #1673
1 parent 67b40ad commit c3406a8

File tree

265 files changed

+436
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+436
-340
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
- uses: Swatinem/rust-cache@v1
5151
- name: rustfmt
5252
run: cargo +nightly fmt --all -- --check
53+
- name: license-check
54+
run: bash check_license.sh
5355
- uses: actions-rs/clippy-check@v1
5456
with:
5557
token: ${{ secrets.GITHUB_TOKEN }}

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ docker-compose-logs:
1919
fmt:
2020
@echo "Formatting Rust files"
2121
@(rustup toolchain list | ( ! grep -q nightly && echo "Toolchain 'nightly' is not installed. Please install using 'rustup toolchain install nightly'.") ) || cargo +nightly fmt
22+
@echo "Checking license"
23+
@bash check_license.sh
2224

2325
# Usage:
2426
# `make test-all` starts the Docker services and runs all the tests.

check_license.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
RESULT=0
4+
5+
for file in $(git ls-files | grep "src\|proto" | grep -e "\.proto\|\.rs\|\.ts" | grep -v "quickwit-proto/src")
6+
do
7+
diff <(sed 's/{\\d+}/2022/' .license_header.txt) <(head -n 19 $file)
8+
DIFFRESULT=$?
9+
if [ $DIFFRESULT -ne 0 ]; then
10+
echo $DIFFRESULT
11+
echo "----"
12+
echo "License error in $file"
13+
echo "---"
14+
echo
15+
RESULT=1
16+
fi
17+
done
18+
19+
exit $RESULT

quickwit-actors/examples/ping_actor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/actor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/actor_handle.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/actor_state.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/actor_with_state_tx.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/channel_with_priority.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/envelope.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/join_handle.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/kill_switch.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/mailbox.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/observation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/progress.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/runner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/scheduler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/spawn_builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-actors/src/universe.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-aws/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-aws/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-aws/src/retry.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/generate_markdown.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/source.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/split.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/src/stats.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/tests/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cli/tests/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cluster/src/cluster.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cluster/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cluster/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-cluster/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/checklist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/coolid.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/metrics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/net.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/rand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-common/src/uri.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-config/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-config/src/index_config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-config/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-config/src/source_config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-core/src/index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/bundle_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/caching_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/debug_proxy_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/hot_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/storage_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-directories/src/union_directory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-doc-mapper/benches/doc_to_json_bench.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

quickwit-doc-mapper/src/default_doc_mapper/default_mapper.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 Quickwit, Inc.
1+
// Copyright (C) 2022 Quickwit, Inc.
22
//
33
// Quickwit is offered under the AGPL v3.0 and as commercial software.
44
// For commercial licensing, contact us at [email protected].

0 commit comments

Comments
 (0)