From 235bef547588b551e12d10a5b44d6d5921402b0d Mon Sep 17 00:00:00 2001 From: Burak Sezer Date: Tue, 6 Feb 2024 01:09:47 +0300 Subject: [PATCH 1/3] Fix a data race issue. Refactor encodeEvent function in cluster_events.go Replaced bufpool usage with bytes.Buffer for data encoding in the encodeEvent function. This code change is done to simplify the data encoding process, and due to bufpool's removal which was previously used for buffer pooling. --- events/cluster_events.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/events/cluster_events.go b/events/cluster_events.go index 5e0bd609..db135478 100644 --- a/events/cluster_events.go +++ b/events/cluster_events.go @@ -15,18 +15,16 @@ package events import ( + "bytes" "encoding/json" "fmt" "reflect" "strconv" "strings" - "github.com/buraksezer/olric/internal/bufpool" "github.com/buraksezer/olric/internal/util" ) -var pool = bufpool.New() - const ( ClusterEventsChannel = "cluster.events" KindNodeJoinEvent = "node-join-event" @@ -41,9 +39,7 @@ type Event interface { // encodeEvents encodes given interface to its JSON representation and preserves the order in fields slice. func encodeEvent(data interface{}, fields []string, valueExtractor func(r reflect.Value, field string) (interface{}, error)) (string, error) { - buf := pool.Get() - defer pool.Put(buf) - + buf := bytes.NewBuffer(nil) buf.WriteString("{") r := reflect.Indirect(reflect.ValueOf(data)) for i, field := range fields { From c213d6b4fe12b0b8f99215fd934954c128dd9d3b Mon Sep 17 00:00:00 2001 From: Burak Sezer Date: Tue, 6 Feb 2024 01:11:51 +0300 Subject: [PATCH 2/3] Update license header --- LICENSE | 2 +- client.go | 2 +- cluster.go | 2 +- cluster_client.go | 2 +- cluster_client_test.go | 2 +- cluster_iterator.go | 2 +- cluster_iterator_test.go | 2 +- cluster_test.go | 2 +- cmd/olricd/main.go | 2 +- cmd/olricd/server/server.go | 2 +- config/client.go | 2 +- config/config.go | 2 +- config/config_test.go | 2 +- config/dmap.go | 2 +- config/dmap_test.go | 2 +- config/dmaps.go | 2 +- config/engine.go | 2 +- config/engine_test.go | 2 +- config/internal/loader/loader.go | 2 +- config/load.go | 2 +- config/memberlist.go | 2 +- config/network.go | 2 +- config/network_test.go | 2 +- embedded_client.go | 2 +- embedded_client_test.go | 2 +- embedded_iterator.go | 2 +- embedded_iterator_test.go | 2 +- events/cluster_events.go | 2 +- events/cluster_events_test.go | 2 +- get_response.go | 2 +- get_response_test.go | 2 +- hasher/hasher.go | 2 +- integration_test.go | 2 +- internal/bufpool/bufpool.go | 2 +- internal/bufpool/bufpool_test.go | 2 +- internal/checkpoint/checkpoint.go | 2 +- internal/checkpoint/checkpoint_test.go | 2 +- internal/cluster/balancer/balancer.go | 2 +- internal/cluster/balancer/balancer_test.go | 2 +- internal/cluster/partitions/fragment.go | 2 +- internal/cluster/partitions/hkey.go | 2 +- internal/cluster/partitions/hkey_test.go | 2 +- internal/cluster/partitions/partition.go | 2 +- internal/cluster/partitions/partition_test.go | 2 +- internal/cluster/partitions/partitions.go | 2 +- internal/cluster/partitions/partitions_test.go | 2 +- internal/cluster/routingtable/callback.go | 2 +- internal/cluster/routingtable/callback_test.go | 2 +- internal/cluster/routingtable/discovery.go | 2 +- internal/cluster/routingtable/discovery_test.go | 2 +- internal/cluster/routingtable/distribute.go | 2 +- internal/cluster/routingtable/distribute_test.go | 2 +- internal/cluster/routingtable/events.go | 2 +- internal/cluster/routingtable/events_test.go | 2 +- internal/cluster/routingtable/handlers.go | 2 +- internal/cluster/routingtable/left_over_data.go | 2 +- internal/cluster/routingtable/left_over_data_test.go | 2 +- internal/cluster/routingtable/members.go | 2 +- internal/cluster/routingtable/members_test.go | 2 +- internal/cluster/routingtable/operations.go | 2 +- internal/cluster/routingtable/routingtable.go | 2 +- internal/cluster/routingtable/routingtable_test.go | 2 +- internal/cluster/routingtable/update.go | 2 +- internal/discovery/delegate.go | 2 +- internal/discovery/discovery.go | 2 +- internal/discovery/discovery_test.go | 2 +- internal/discovery/events.go | 2 +- internal/discovery/member.go | 2 +- internal/discovery/member_test.go | 2 +- internal/dmap/atomic.go | 2 +- internal/dmap/atomic_handlers.go | 2 +- internal/dmap/atomic_test.go | 2 +- internal/dmap/balance.go | 2 +- internal/dmap/balance_test.go | 2 +- internal/dmap/compaction.go | 2 +- internal/dmap/compaction_test.go | 2 +- internal/dmap/config.go | 2 +- internal/dmap/config_test.go | 2 +- internal/dmap/delete.go | 2 +- internal/dmap/delete_handlers.go | 2 +- internal/dmap/delete_test.go | 2 +- internal/dmap/destroy.go | 2 +- internal/dmap/destroy_handlers.go | 2 +- internal/dmap/destroy_test.go | 2 +- internal/dmap/dmap.go | 2 +- internal/dmap/dmap_test.go | 2 +- internal/dmap/env.go | 2 +- internal/dmap/eviction.go | 2 +- internal/dmap/eviction_test.go | 2 +- internal/dmap/expire.go | 2 +- internal/dmap/expire_handlers.go | 2 +- internal/dmap/expire_test.go | 2 +- internal/dmap/fragment.go | 2 +- internal/dmap/fragment_test.go | 2 +- internal/dmap/get.go | 2 +- internal/dmap/get_handlers.go | 2 +- internal/dmap/get_test.go | 2 +- internal/dmap/handlers.go | 2 +- internal/dmap/janitor.go | 2 +- internal/dmap/lock.go | 2 +- internal/dmap/lock_handlers.go | 2 +- internal/dmap/lock_test.go | 2 +- internal/dmap/put.go | 2 +- internal/dmap/put_handlers.go | 2 +- internal/dmap/put_test.go | 2 +- internal/dmap/scan_handlers.go | 2 +- internal/dmap/scan_test.go | 2 +- internal/dmap/service.go | 2 +- internal/dmap/service_test.go | 2 +- internal/dmap/stats_test.go | 2 +- internal/environment/environment.go | 2 +- internal/environment/environment_test.go | 2 +- internal/kvstore/compaction.go | 2 +- internal/kvstore/compaction_test.go | 2 +- internal/kvstore/entry/entry.go | 2 +- internal/kvstore/entry/entry_test.go | 2 +- internal/kvstore/kvstore.go | 8 +++++--- internal/kvstore/kvstore_test.go | 2 +- internal/kvstore/table/pack.go | 2 +- internal/kvstore/table/pack_test.go | 2 +- internal/kvstore/table/table.go | 2 +- internal/kvstore/table/table_test.go | 2 +- internal/kvstore/transport.go | 2 +- internal/protocol/cluster.go | 2 +- internal/protocol/cluster_test.go | 2 +- internal/protocol/commands.go | 2 +- internal/protocol/dmap.go | 2 +- internal/protocol/dmap_test.go | 2 +- internal/protocol/errors.go | 2 +- internal/protocol/errors_test.go | 2 +- internal/protocol/pubsub.go | 2 +- internal/protocol/system.go | 2 +- internal/protocol/system_test.go | 2 +- internal/pubsub/handlers.go | 2 +- internal/pubsub/handlers_test.go | 2 +- internal/pubsub/service.go | 2 +- internal/roundrobin/round_robin.go | 2 +- internal/roundrobin/round_robin_test.go | 2 +- internal/server/client.go | 2 +- internal/server/client_test.go | 2 +- internal/server/handler.go | 2 +- internal/server/handler_test.go | 2 +- internal/server/mux_test.go | 2 +- internal/server/server.go | 2 +- internal/server/server_test.go | 2 +- internal/service/service.go | 2 +- internal/stats/stats.go | 2 +- internal/stats/stats_test.go | 2 +- internal/testcluster/testcluster.go | 2 +- internal/testutil/mockfragment/mockfragment.go | 2 +- internal/testutil/testutil.go | 2 +- olric.go | 2 +- olric_test.go | 2 +- ping.go | 2 +- ping_test.go | 2 +- pipeline.go | 2 +- pipeline_test.go | 2 +- pkg/flog/flog.go | 2 +- pkg/neterrors/errors.go | 2 +- pkg/service_discovery/service_discovery.go | 2 +- pkg/storage/config.go | 2 +- pkg/storage/config_test.go | 2 +- pkg/storage/engine.go | 2 +- pkg/storage/entry.go | 2 +- pkg/storage/stats.go | 2 +- pubsub.go | 2 +- pubsub_test.go | 2 +- stats.go | 2 +- stats/stats.go | 2 +- stats/stats_test.go | 2 +- stats_test.go | 2 +- 171 files changed, 175 insertions(+), 173 deletions(-) diff --git a/LICENSE b/LICENSE index e4cbcaac..6037324e 100644 --- a/LICENSE +++ b/LICENSE @@ -176,7 +176,7 @@ END OF TERMS AND CONDITIONS - Copyright 2018-2022 Burak Sezer. + Copyright 2018-2024 Burak Sezer. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/client.go b/client.go index c4f33ccb..4035888b 100644 --- a/client.go +++ b/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster.go b/cluster.go index 95c62313..7ba39a2e 100644 --- a/cluster.go +++ b/cluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_client.go b/cluster_client.go index fb7ba43f..aab8f10e 100644 --- a/cluster_client.go +++ b/cluster_client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_client_test.go b/cluster_client_test.go index e55a3232..c9f488f9 100644 --- a/cluster_client_test.go +++ b/cluster_client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_iterator.go b/cluster_iterator.go index 00e9f1ab..9ca0b1a9 100644 --- a/cluster_iterator.go +++ b/cluster_iterator.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_iterator_test.go b/cluster_iterator_test.go index c89e8e45..286005fd 100644 --- a/cluster_iterator_test.go +++ b/cluster_iterator_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_test.go b/cluster_test.go index 7fe219db..24d06cb2 100644 --- a/cluster_test.go +++ b/cluster_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/olricd/main.go b/cmd/olricd/main.go index c2a3ceec..f61831a3 100644 --- a/cmd/olricd/main.go +++ b/cmd/olricd/main.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/olricd/server/server.go b/cmd/olricd/server/server.go index 1da45f17..dc3a1fb9 100644 --- a/cmd/olricd/server/server.go +++ b/cmd/olricd/server/server.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/client.go b/config/client.go index e7690c62..46fe748a 100644 --- a/config/client.go +++ b/config/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/config.go b/config/config.go index e4b37322..d2e7da9e 100644 --- a/config/config.go +++ b/config/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/config_test.go b/config/config_test.go index 59b8592f..0bc2f1a7 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmap.go b/config/dmap.go index 3a561b90..5e5a2199 100644 --- a/config/dmap.go +++ b/config/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmap_test.go b/config/dmap_test.go index ab004d97..cb768ec2 100644 --- a/config/dmap_test.go +++ b/config/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmaps.go b/config/dmaps.go index 54477a44..fb882725 100644 --- a/config/dmaps.go +++ b/config/dmaps.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/engine.go b/config/engine.go index 1cb6d87e..57841de5 100644 --- a/config/engine.go +++ b/config/engine.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/engine_test.go b/config/engine_test.go index 30716c6d..cbe3362d 100644 --- a/config/engine_test.go +++ b/config/engine_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/internal/loader/loader.go b/config/internal/loader/loader.go index 2b345f2a..2ed375f5 100644 --- a/config/internal/loader/loader.go +++ b/config/internal/loader/loader.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/load.go b/config/load.go index 39445d9e..ea6b804f 100644 --- a/config/load.go +++ b/config/load.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/memberlist.go b/config/memberlist.go index a9aa8b83..a2c109f2 100644 --- a/config/memberlist.go +++ b/config/memberlist.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/network.go b/config/network.go index ea0f4099..a03de140 100644 --- a/config/network.go +++ b/config/network.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/network_test.go b/config/network_test.go index 2ef2de29..ed0a3327 100644 --- a/config/network_test.go +++ b/config/network_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_client.go b/embedded_client.go index b12a5429..ee94c4c2 100644 --- a/embedded_client.go +++ b/embedded_client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_client_test.go b/embedded_client_test.go index b7713eeb..086eaccf 100644 --- a/embedded_client_test.go +++ b/embedded_client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_iterator.go b/embedded_iterator.go index 47917670..9f6ae47f 100644 --- a/embedded_iterator.go +++ b/embedded_iterator.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_iterator_test.go b/embedded_iterator_test.go index 2206868e..33cc4c31 100644 --- a/embedded_iterator_test.go +++ b/embedded_iterator_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/events/cluster_events.go b/events/cluster_events.go index db135478..d0d62746 100644 --- a/events/cluster_events.go +++ b/events/cluster_events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/events/cluster_events_test.go b/events/cluster_events_test.go index bd4f7e8f..fea564dc 100644 --- a/events/cluster_events_test.go +++ b/events/cluster_events_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/get_response.go b/get_response.go index 7e9c5eac..310d9469 100644 --- a/get_response.go +++ b/get_response.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/get_response_test.go b/get_response_test.go index 179282e9..a24207d7 100644 --- a/get_response_test.go +++ b/get_response_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hasher/hasher.go b/hasher/hasher.go index 734a5c99..7dd199c1 100644 --- a/hasher/hasher.go +++ b/hasher/hasher.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/integration_test.go b/integration_test.go index f1c6812a..8890beac 100644 --- a/integration_test.go +++ b/integration_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/bufpool/bufpool.go b/internal/bufpool/bufpool.go index 4199d415..75728c98 100644 --- a/internal/bufpool/bufpool.go +++ b/internal/bufpool/bufpool.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/bufpool/bufpool_test.go b/internal/bufpool/bufpool_test.go index 9243e5bd..7476bd30 100644 --- a/internal/bufpool/bufpool_test.go +++ b/internal/bufpool/bufpool_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/checkpoint/checkpoint.go b/internal/checkpoint/checkpoint.go index f17f9d08..927abd7a 100644 --- a/internal/checkpoint/checkpoint.go +++ b/internal/checkpoint/checkpoint.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/checkpoint/checkpoint_test.go b/internal/checkpoint/checkpoint_test.go index c1db9ae2..f7103dba 100644 --- a/internal/checkpoint/checkpoint_test.go +++ b/internal/checkpoint/checkpoint_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/balancer/balancer.go b/internal/cluster/balancer/balancer.go index 03748edc..4958440e 100644 --- a/internal/cluster/balancer/balancer.go +++ b/internal/cluster/balancer/balancer.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/balancer/balancer_test.go b/internal/cluster/balancer/balancer_test.go index 4bd09805..7780766f 100644 --- a/internal/cluster/balancer/balancer_test.go +++ b/internal/cluster/balancer/balancer_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/fragment.go b/internal/cluster/partitions/fragment.go index ff6e19bb..ac1a7348 100644 --- a/internal/cluster/partitions/fragment.go +++ b/internal/cluster/partitions/fragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/hkey.go b/internal/cluster/partitions/hkey.go index 67a20d1b..51e76440 100644 --- a/internal/cluster/partitions/hkey.go +++ b/internal/cluster/partitions/hkey.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/hkey_test.go b/internal/cluster/partitions/hkey_test.go index e74184ed..f442f32d 100644 --- a/internal/cluster/partitions/hkey_test.go +++ b/internal/cluster/partitions/hkey_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partition.go b/internal/cluster/partitions/partition.go index 72cfad7b..09ff6d43 100644 --- a/internal/cluster/partitions/partition.go +++ b/internal/cluster/partitions/partition.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partition_test.go b/internal/cluster/partitions/partition_test.go index b413cc1c..cbda5d13 100644 --- a/internal/cluster/partitions/partition_test.go +++ b/internal/cluster/partitions/partition_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partitions.go b/internal/cluster/partitions/partitions.go index 738e6042..4e51411a 100644 --- a/internal/cluster/partitions/partitions.go +++ b/internal/cluster/partitions/partitions.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partitions_test.go b/internal/cluster/partitions/partitions_test.go index 9d65468d..88840383 100644 --- a/internal/cluster/partitions/partitions_test.go +++ b/internal/cluster/partitions/partitions_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/callback.go b/internal/cluster/routingtable/callback.go index 8b7be14d..47bb9b15 100644 --- a/internal/cluster/routingtable/callback.go +++ b/internal/cluster/routingtable/callback.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/callback_test.go b/internal/cluster/routingtable/callback_test.go index 26ca02e6..34e8e043 100644 --- a/internal/cluster/routingtable/callback_test.go +++ b/internal/cluster/routingtable/callback_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/discovery.go b/internal/cluster/routingtable/discovery.go index d3343392..8d29384b 100644 --- a/internal/cluster/routingtable/discovery.go +++ b/internal/cluster/routingtable/discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/discovery_test.go b/internal/cluster/routingtable/discovery_test.go index 4252ee57..be302ec7 100644 --- a/internal/cluster/routingtable/discovery_test.go +++ b/internal/cluster/routingtable/discovery_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/distribute.go b/internal/cluster/routingtable/distribute.go index 533490ca..c91ad3d6 100644 --- a/internal/cluster/routingtable/distribute.go +++ b/internal/cluster/routingtable/distribute.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/distribute_test.go b/internal/cluster/routingtable/distribute_test.go index 381528e9..13debf92 100644 --- a/internal/cluster/routingtable/distribute_test.go +++ b/internal/cluster/routingtable/distribute_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/events.go b/internal/cluster/routingtable/events.go index 9e2d175f..3b106e54 100644 --- a/internal/cluster/routingtable/events.go +++ b/internal/cluster/routingtable/events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/events_test.go b/internal/cluster/routingtable/events_test.go index 0fd6b7f4..b2e4233a 100644 --- a/internal/cluster/routingtable/events_test.go +++ b/internal/cluster/routingtable/events_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/handlers.go b/internal/cluster/routingtable/handlers.go index 766a9f3c..7206d369 100644 --- a/internal/cluster/routingtable/handlers.go +++ b/internal/cluster/routingtable/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/left_over_data.go b/internal/cluster/routingtable/left_over_data.go index cc730a83..c90188b5 100644 --- a/internal/cluster/routingtable/left_over_data.go +++ b/internal/cluster/routingtable/left_over_data.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/left_over_data_test.go b/internal/cluster/routingtable/left_over_data_test.go index 7c7475fd..c46a4822 100644 --- a/internal/cluster/routingtable/left_over_data_test.go +++ b/internal/cluster/routingtable/left_over_data_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/members.go b/internal/cluster/routingtable/members.go index 8230e96c..34efdcd7 100644 --- a/internal/cluster/routingtable/members.go +++ b/internal/cluster/routingtable/members.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/members_test.go b/internal/cluster/routingtable/members_test.go index 0e939377..5f26897b 100644 --- a/internal/cluster/routingtable/members_test.go +++ b/internal/cluster/routingtable/members_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/operations.go b/internal/cluster/routingtable/operations.go index b6610532..0e3e7d48 100644 --- a/internal/cluster/routingtable/operations.go +++ b/internal/cluster/routingtable/operations.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/routingtable.go b/internal/cluster/routingtable/routingtable.go index 5ddbda3a..4902fcdc 100644 --- a/internal/cluster/routingtable/routingtable.go +++ b/internal/cluster/routingtable/routingtable.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/routingtable_test.go b/internal/cluster/routingtable/routingtable_test.go index d475b73a..84f232e0 100644 --- a/internal/cluster/routingtable/routingtable_test.go +++ b/internal/cluster/routingtable/routingtable_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/update.go b/internal/cluster/routingtable/update.go index 08ce7758..8f4adcff 100644 --- a/internal/cluster/routingtable/update.go +++ b/internal/cluster/routingtable/update.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/delegate.go b/internal/discovery/delegate.go index 477d3a3a..46241403 100644 --- a/internal/discovery/delegate.go +++ b/internal/discovery/delegate.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/discovery.go b/internal/discovery/discovery.go index 1e309b82..d8898812 100644 --- a/internal/discovery/discovery.go +++ b/internal/discovery/discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/discovery_test.go b/internal/discovery/discovery_test.go index 451d01c1..a7941d59 100644 --- a/internal/discovery/discovery_test.go +++ b/internal/discovery/discovery_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/events.go b/internal/discovery/events.go index 49951b61..a571c90e 100644 --- a/internal/discovery/events.go +++ b/internal/discovery/events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/member.go b/internal/discovery/member.go index 2c9f5729..9f5f7075 100644 --- a/internal/discovery/member.go +++ b/internal/discovery/member.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/member_test.go b/internal/discovery/member_test.go index 48d6675c..4c921804 100644 --- a/internal/discovery/member_test.go +++ b/internal/discovery/member_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic.go b/internal/dmap/atomic.go index b64b86b1..74b4d55c 100644 --- a/internal/dmap/atomic.go +++ b/internal/dmap/atomic.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic_handlers.go b/internal/dmap/atomic_handlers.go index 090044dc..677c7a84 100644 --- a/internal/dmap/atomic_handlers.go +++ b/internal/dmap/atomic_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic_test.go b/internal/dmap/atomic_test.go index b62d75a5..d82c74bf 100644 --- a/internal/dmap/atomic_test.go +++ b/internal/dmap/atomic_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/balance.go b/internal/dmap/balance.go index 7b12c29f..de269e67 100644 --- a/internal/dmap/balance.go +++ b/internal/dmap/balance.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/balance_test.go b/internal/dmap/balance_test.go index 14622dc5..bd0acd93 100644 --- a/internal/dmap/balance_test.go +++ b/internal/dmap/balance_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/compaction.go b/internal/dmap/compaction.go index 1728e124..06d5a6da 100644 --- a/internal/dmap/compaction.go +++ b/internal/dmap/compaction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/compaction_test.go b/internal/dmap/compaction_test.go index eba390bf..3f8de7a0 100644 --- a/internal/dmap/compaction_test.go +++ b/internal/dmap/compaction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/config.go b/internal/dmap/config.go index 7d0cbe8f..ac08490c 100644 --- a/internal/dmap/config.go +++ b/internal/dmap/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/config_test.go b/internal/dmap/config_test.go index 05021edd..c3ec16d4 100644 --- a/internal/dmap/config_test.go +++ b/internal/dmap/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete.go b/internal/dmap/delete.go index e268eabc..3446bb0d 100644 --- a/internal/dmap/delete.go +++ b/internal/dmap/delete.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete_handlers.go b/internal/dmap/delete_handlers.go index 89960c23..5effb343 100644 --- a/internal/dmap/delete_handlers.go +++ b/internal/dmap/delete_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete_test.go b/internal/dmap/delete_test.go index 759465e2..c6b6f617 100644 --- a/internal/dmap/delete_test.go +++ b/internal/dmap/delete_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy.go b/internal/dmap/destroy.go index 08a5496d..7bb6d319 100644 --- a/internal/dmap/destroy.go +++ b/internal/dmap/destroy.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy_handlers.go b/internal/dmap/destroy_handlers.go index 9badf5bf..ea4eaa62 100644 --- a/internal/dmap/destroy_handlers.go +++ b/internal/dmap/destroy_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy_test.go b/internal/dmap/destroy_test.go index 057203b9..bfa356d5 100644 --- a/internal/dmap/destroy_test.go +++ b/internal/dmap/destroy_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/dmap.go b/internal/dmap/dmap.go index 3e9de9c6..cc34bd9e 100644 --- a/internal/dmap/dmap.go +++ b/internal/dmap/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/dmap_test.go b/internal/dmap/dmap_test.go index 474e5f1a..32385d25 100644 --- a/internal/dmap/dmap_test.go +++ b/internal/dmap/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/env.go b/internal/dmap/env.go index 923c2e33..5f804e81 100644 --- a/internal/dmap/env.go +++ b/internal/dmap/env.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/eviction.go b/internal/dmap/eviction.go index 62af4015..bd1123af 100644 --- a/internal/dmap/eviction.go +++ b/internal/dmap/eviction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/eviction_test.go b/internal/dmap/eviction_test.go index fa52630e..6460a056 100644 --- a/internal/dmap/eviction_test.go +++ b/internal/dmap/eviction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire.go b/internal/dmap/expire.go index 419ce0e8..713e8955 100644 --- a/internal/dmap/expire.go +++ b/internal/dmap/expire.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire_handlers.go b/internal/dmap/expire_handlers.go index 730d534c..2ee26180 100644 --- a/internal/dmap/expire_handlers.go +++ b/internal/dmap/expire_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire_test.go b/internal/dmap/expire_test.go index 7ce689ea..47f38655 100644 --- a/internal/dmap/expire_test.go +++ b/internal/dmap/expire_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/fragment.go b/internal/dmap/fragment.go index d5e4e1b2..52f2aa06 100644 --- a/internal/dmap/fragment.go +++ b/internal/dmap/fragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/fragment_test.go b/internal/dmap/fragment_test.go index e62aa208..6ce1c92a 100644 --- a/internal/dmap/fragment_test.go +++ b/internal/dmap/fragment_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get.go b/internal/dmap/get.go index 10e481e6..b0688e80 100644 --- a/internal/dmap/get.go +++ b/internal/dmap/get.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get_handlers.go b/internal/dmap/get_handlers.go index ff75a63b..a0515094 100644 --- a/internal/dmap/get_handlers.go +++ b/internal/dmap/get_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get_test.go b/internal/dmap/get_test.go index dd878954..e41dc8e0 100644 --- a/internal/dmap/get_test.go +++ b/internal/dmap/get_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/handlers.go b/internal/dmap/handlers.go index 9c0c7956..28767f56 100644 --- a/internal/dmap/handlers.go +++ b/internal/dmap/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/janitor.go b/internal/dmap/janitor.go index df598f08..5fc62ae6 100644 --- a/internal/dmap/janitor.go +++ b/internal/dmap/janitor.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock.go b/internal/dmap/lock.go index ea0112ac..17fdb807 100644 --- a/internal/dmap/lock.go +++ b/internal/dmap/lock.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock_handlers.go b/internal/dmap/lock_handlers.go index cdad4d64..e02a98cb 100644 --- a/internal/dmap/lock_handlers.go +++ b/internal/dmap/lock_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock_test.go b/internal/dmap/lock_test.go index edcb115a..2c225b62 100644 --- a/internal/dmap/lock_test.go +++ b/internal/dmap/lock_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put.go b/internal/dmap/put.go index 9c4aed33..08b13721 100644 --- a/internal/dmap/put.go +++ b/internal/dmap/put.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put_handlers.go b/internal/dmap/put_handlers.go index 0e4e2af0..02256015 100644 --- a/internal/dmap/put_handlers.go +++ b/internal/dmap/put_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put_test.go b/internal/dmap/put_test.go index 9d035d08..7f51037c 100644 --- a/internal/dmap/put_test.go +++ b/internal/dmap/put_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/scan_handlers.go b/internal/dmap/scan_handlers.go index 1b7c7f8c..5487be06 100644 --- a/internal/dmap/scan_handlers.go +++ b/internal/dmap/scan_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/scan_test.go b/internal/dmap/scan_test.go index 2b3ef1fb..49829e70 100644 --- a/internal/dmap/scan_test.go +++ b/internal/dmap/scan_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/service.go b/internal/dmap/service.go index 8a0868da..fae94016 100644 --- a/internal/dmap/service.go +++ b/internal/dmap/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/service_test.go b/internal/dmap/service_test.go index 2b5b1062..43b62b21 100644 --- a/internal/dmap/service_test.go +++ b/internal/dmap/service_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/stats_test.go b/internal/dmap/stats_test.go index 281773f4..07bf2744 100644 --- a/internal/dmap/stats_test.go +++ b/internal/dmap/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/environment/environment.go b/internal/environment/environment.go index 24525bb8..751daeed 100644 --- a/internal/environment/environment.go +++ b/internal/environment/environment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/environment/environment_test.go b/internal/environment/environment_test.go index d216a6a8..a2bd5e16 100644 --- a/internal/environment/environment_test.go +++ b/internal/environment/environment_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/compaction.go b/internal/kvstore/compaction.go index 276fdbcc..9e20aa78 100644 --- a/internal/kvstore/compaction.go +++ b/internal/kvstore/compaction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/compaction_test.go b/internal/kvstore/compaction_test.go index 753d2040..d73eea1a 100644 --- a/internal/kvstore/compaction_test.go +++ b/internal/kvstore/compaction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/entry/entry.go b/internal/kvstore/entry/entry.go index f1cf4c23..c96018b5 100644 --- a/internal/kvstore/entry/entry.go +++ b/internal/kvstore/entry/entry.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/entry/entry_test.go b/internal/kvstore/entry/entry_test.go index d5f0cf2b..1f9bea8b 100644 --- a/internal/kvstore/entry/entry_test.go +++ b/internal/kvstore/entry/entry_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/kvstore.go b/internal/kvstore/kvstore.go index 72ed3be5..c5dde94a 100644 --- a/internal/kvstore/kvstore.go +++ b/internal/kvstore/kvstore.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -12,8 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -/*Package kvstore implements a GC friendly in-memory storage engine by using -built-in maps and byte slices. It also supports compaction.*/ +/* +Package kvstore implements a GC friendly in-memory storage engine by using +built-in maps and byte slices. It also supports compaction. +*/ package kvstore import ( diff --git a/internal/kvstore/kvstore_test.go b/internal/kvstore/kvstore_test.go index 0e0c7912..92ef9508 100644 --- a/internal/kvstore/kvstore_test.go +++ b/internal/kvstore/kvstore_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/pack.go b/internal/kvstore/table/pack.go index 3f649f66..c20a1df1 100644 --- a/internal/kvstore/table/pack.go +++ b/internal/kvstore/table/pack.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/pack_test.go b/internal/kvstore/table/pack_test.go index 1c42c71b..d6e59d3f 100644 --- a/internal/kvstore/table/pack_test.go +++ b/internal/kvstore/table/pack_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/table.go b/internal/kvstore/table/table.go index 4a995d2b..fe8fc61f 100644 --- a/internal/kvstore/table/table.go +++ b/internal/kvstore/table/table.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/table_test.go b/internal/kvstore/table/table_test.go index 2cf9ead3..da1be6a2 100644 --- a/internal/kvstore/table/table_test.go +++ b/internal/kvstore/table/table_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/transport.go b/internal/kvstore/transport.go index cad6dc77..6a5305d1 100644 --- a/internal/kvstore/transport.go +++ b/internal/kvstore/transport.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/cluster.go b/internal/protocol/cluster.go index 633c4ddf..c7fd86c9 100644 --- a/internal/protocol/cluster.go +++ b/internal/protocol/cluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/cluster_test.go b/internal/protocol/cluster_test.go index 45c8d293..13efd17b 100644 --- a/internal/protocol/cluster_test.go +++ b/internal/protocol/cluster_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/commands.go b/internal/protocol/commands.go index b9da9cf4..2646ca59 100644 --- a/internal/protocol/commands.go +++ b/internal/protocol/commands.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/dmap.go b/internal/protocol/dmap.go index 047a8d2e..c5125416 100644 --- a/internal/protocol/dmap.go +++ b/internal/protocol/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/dmap_test.go b/internal/protocol/dmap_test.go index e66c0d3d..29b546e0 100644 --- a/internal/protocol/dmap_test.go +++ b/internal/protocol/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/errors.go b/internal/protocol/errors.go index 1854c5e6..18a3ddad 100644 --- a/internal/protocol/errors.go +++ b/internal/protocol/errors.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/errors_test.go b/internal/protocol/errors_test.go index 731940ca..607177c6 100644 --- a/internal/protocol/errors_test.go +++ b/internal/protocol/errors_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/pubsub.go b/internal/protocol/pubsub.go index d5bcb4de..34628a8c 100644 --- a/internal/protocol/pubsub.go +++ b/internal/protocol/pubsub.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/system.go b/internal/protocol/system.go index 4f6a56a4..40a3d62b 100644 --- a/internal/protocol/system.go +++ b/internal/protocol/system.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/system_test.go b/internal/protocol/system_test.go index fbbdec74..4b0414cd 100644 --- a/internal/protocol/system_test.go +++ b/internal/protocol/system_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/handlers.go b/internal/pubsub/handlers.go index 463bdb12..06c8436c 100644 --- a/internal/pubsub/handlers.go +++ b/internal/pubsub/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/handlers_test.go b/internal/pubsub/handlers_test.go index 3696c82b..c65bd1b3 100644 --- a/internal/pubsub/handlers_test.go +++ b/internal/pubsub/handlers_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/service.go b/internal/pubsub/service.go index bb2c7092..f54f6254 100644 --- a/internal/pubsub/service.go +++ b/internal/pubsub/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/roundrobin/round_robin.go b/internal/roundrobin/round_robin.go index 8e46f6c5..20645125 100644 --- a/internal/roundrobin/round_robin.go +++ b/internal/roundrobin/round_robin.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/roundrobin/round_robin_test.go b/internal/roundrobin/round_robin_test.go index 9c3becdc..2ced574f 100644 --- a/internal/roundrobin/round_robin_test.go +++ b/internal/roundrobin/round_robin_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/client.go b/internal/server/client.go index ac001dd8..9176cd42 100644 --- a/internal/server/client.go +++ b/internal/server/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/client_test.go b/internal/server/client_test.go index 6003df40..21402dcd 100644 --- a/internal/server/client_test.go +++ b/internal/server/client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/handler.go b/internal/server/handler.go index c5d2a490..d1ee3a23 100644 --- a/internal/server/handler.go +++ b/internal/server/handler.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/handler_test.go b/internal/server/handler_test.go index 7368adf5..dbf03d2a 100644 --- a/internal/server/handler_test.go +++ b/internal/server/handler_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/mux_test.go b/internal/server/mux_test.go index ec3ecd1f..ed4a7a0b 100644 --- a/internal/server/mux_test.go +++ b/internal/server/mux_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/server.go b/internal/server/server.go index 38ddcc0a..c7056e40 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/server_test.go b/internal/server/server_test.go index e1269e3c..43bd2847 100644 --- a/internal/server/server_test.go +++ b/internal/server/server_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/service/service.go b/internal/service/service.go index 6196b1b6..1902a430 100644 --- a/internal/service/service.go +++ b/internal/service/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/stats/stats.go b/internal/stats/stats.go index cb346746..c863bc31 100644 --- a/internal/stats/stats.go +++ b/internal/stats/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/stats/stats_test.go b/internal/stats/stats_test.go index d11e8491..e9ac5f7c 100644 --- a/internal/stats/stats_test.go +++ b/internal/stats/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testcluster/testcluster.go b/internal/testcluster/testcluster.go index 0e9cec24..7d0fb244 100644 --- a/internal/testcluster/testcluster.go +++ b/internal/testcluster/testcluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testutil/mockfragment/mockfragment.go b/internal/testutil/mockfragment/mockfragment.go index 4c726946..f9d7c7ee 100644 --- a/internal/testutil/mockfragment/mockfragment.go +++ b/internal/testutil/mockfragment/mockfragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testutil/testutil.go b/internal/testutil/testutil.go index 444e138d..813b862b 100644 --- a/internal/testutil/testutil.go +++ b/internal/testutil/testutil.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/olric.go b/olric.go index 7b638376..25b487cb 100644 --- a/olric.go +++ b/olric.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/olric_test.go b/olric_test.go index 52a88bc9..7897db78 100644 --- a/olric_test.go +++ b/olric_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/ping.go b/ping.go index dd4b7082..032a3385 100644 --- a/ping.go +++ b/ping.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/ping_test.go b/ping_test.go index fb3a7cab..913c083c 100644 --- a/ping_test.go +++ b/ping_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pipeline.go b/pipeline.go index 09334f73..87d36a9f 100644 --- a/pipeline.go +++ b/pipeline.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pipeline_test.go b/pipeline_test.go index 527d74dc..afc7d2bb 100644 --- a/pipeline_test.go +++ b/pipeline_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/flog/flog.go b/pkg/flog/flog.go index 362e1aa8..dd100571 100644 --- a/pkg/flog/flog.go +++ b/pkg/flog/flog.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/neterrors/errors.go b/pkg/neterrors/errors.go index d99781b7..9e14975f 100644 --- a/pkg/neterrors/errors.go +++ b/pkg/neterrors/errors.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/service_discovery/service_discovery.go b/pkg/service_discovery/service_discovery.go index 71bc0563..5ff980a8 100644 --- a/pkg/service_discovery/service_discovery.go +++ b/pkg/service_discovery/service_discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/config.go b/pkg/storage/config.go index 6cefd81f..d2086297 100644 --- a/pkg/storage/config.go +++ b/pkg/storage/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/config_test.go b/pkg/storage/config_test.go index 0ba201bd..f7b4cf0c 100644 --- a/pkg/storage/config_test.go +++ b/pkg/storage/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/engine.go b/pkg/storage/engine.go index 5750e143..fac9571d 100644 --- a/pkg/storage/engine.go +++ b/pkg/storage/engine.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/entry.go b/pkg/storage/entry.go index da5a6987..915b684e 100644 --- a/pkg/storage/entry.go +++ b/pkg/storage/entry.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/stats.go b/pkg/storage/stats.go index da06af91..5c520575 100644 --- a/pkg/storage/stats.go +++ b/pkg/storage/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pubsub.go b/pubsub.go index e5e40176..d4618fe5 100644 --- a/pubsub.go +++ b/pubsub.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pubsub_test.go b/pubsub_test.go index 28cf41a1..008fb717 100644 --- a/pubsub_test.go +++ b/pubsub_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats.go b/stats.go index 058d5ffd..ed87da8e 100644 --- a/stats.go +++ b/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats.go b/stats/stats.go index 20d60e84..330c5328 100644 --- a/stats/stats.go +++ b/stats/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats_test.go b/stats/stats_test.go index b13865bb..d0150f52 100644 --- a/stats/stats_test.go +++ b/stats/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats_test.go b/stats_test.go index efa45466..0c14e8d4 100644 --- a/stats_test.go +++ b/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2022 Burak Sezer +// Copyright 2018-2024 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. From e7736062ff8d17087bc06696645d5dac613eba19 Mon Sep 17 00:00:00 2001 From: Burak Sezer Date: Tue, 6 Feb 2024 01:15:35 +0300 Subject: [PATCH 3/3] Revert "Update license header" This reverts commit c213d6b4fe12b0b8f99215fd934954c128dd9d3b. --- LICENSE | 2 +- client.go | 2 +- cluster.go | 2 +- cluster_client.go | 2 +- cluster_client_test.go | 2 +- cluster_iterator.go | 2 +- cluster_iterator_test.go | 2 +- cluster_test.go | 2 +- cmd/olricd/main.go | 2 +- cmd/olricd/server/server.go | 2 +- config/client.go | 2 +- config/config.go | 2 +- config/config_test.go | 2 +- config/dmap.go | 2 +- config/dmap_test.go | 2 +- config/dmaps.go | 2 +- config/engine.go | 2 +- config/engine_test.go | 2 +- config/internal/loader/loader.go | 2 +- config/load.go | 2 +- config/memberlist.go | 2 +- config/network.go | 2 +- config/network_test.go | 2 +- embedded_client.go | 2 +- embedded_client_test.go | 2 +- embedded_iterator.go | 2 +- embedded_iterator_test.go | 2 +- events/cluster_events.go | 2 +- events/cluster_events_test.go | 2 +- get_response.go | 2 +- get_response_test.go | 2 +- hasher/hasher.go | 2 +- integration_test.go | 2 +- internal/bufpool/bufpool.go | 2 +- internal/bufpool/bufpool_test.go | 2 +- internal/checkpoint/checkpoint.go | 2 +- internal/checkpoint/checkpoint_test.go | 2 +- internal/cluster/balancer/balancer.go | 2 +- internal/cluster/balancer/balancer_test.go | 2 +- internal/cluster/partitions/fragment.go | 2 +- internal/cluster/partitions/hkey.go | 2 +- internal/cluster/partitions/hkey_test.go | 2 +- internal/cluster/partitions/partition.go | 2 +- internal/cluster/partitions/partition_test.go | 2 +- internal/cluster/partitions/partitions.go | 2 +- internal/cluster/partitions/partitions_test.go | 2 +- internal/cluster/routingtable/callback.go | 2 +- internal/cluster/routingtable/callback_test.go | 2 +- internal/cluster/routingtable/discovery.go | 2 +- internal/cluster/routingtable/discovery_test.go | 2 +- internal/cluster/routingtable/distribute.go | 2 +- internal/cluster/routingtable/distribute_test.go | 2 +- internal/cluster/routingtable/events.go | 2 +- internal/cluster/routingtable/events_test.go | 2 +- internal/cluster/routingtable/handlers.go | 2 +- internal/cluster/routingtable/left_over_data.go | 2 +- internal/cluster/routingtable/left_over_data_test.go | 2 +- internal/cluster/routingtable/members.go | 2 +- internal/cluster/routingtable/members_test.go | 2 +- internal/cluster/routingtable/operations.go | 2 +- internal/cluster/routingtable/routingtable.go | 2 +- internal/cluster/routingtable/routingtable_test.go | 2 +- internal/cluster/routingtable/update.go | 2 +- internal/discovery/delegate.go | 2 +- internal/discovery/discovery.go | 2 +- internal/discovery/discovery_test.go | 2 +- internal/discovery/events.go | 2 +- internal/discovery/member.go | 2 +- internal/discovery/member_test.go | 2 +- internal/dmap/atomic.go | 2 +- internal/dmap/atomic_handlers.go | 2 +- internal/dmap/atomic_test.go | 2 +- internal/dmap/balance.go | 2 +- internal/dmap/balance_test.go | 2 +- internal/dmap/compaction.go | 2 +- internal/dmap/compaction_test.go | 2 +- internal/dmap/config.go | 2 +- internal/dmap/config_test.go | 2 +- internal/dmap/delete.go | 2 +- internal/dmap/delete_handlers.go | 2 +- internal/dmap/delete_test.go | 2 +- internal/dmap/destroy.go | 2 +- internal/dmap/destroy_handlers.go | 2 +- internal/dmap/destroy_test.go | 2 +- internal/dmap/dmap.go | 2 +- internal/dmap/dmap_test.go | 2 +- internal/dmap/env.go | 2 +- internal/dmap/eviction.go | 2 +- internal/dmap/eviction_test.go | 2 +- internal/dmap/expire.go | 2 +- internal/dmap/expire_handlers.go | 2 +- internal/dmap/expire_test.go | 2 +- internal/dmap/fragment.go | 2 +- internal/dmap/fragment_test.go | 2 +- internal/dmap/get.go | 2 +- internal/dmap/get_handlers.go | 2 +- internal/dmap/get_test.go | 2 +- internal/dmap/handlers.go | 2 +- internal/dmap/janitor.go | 2 +- internal/dmap/lock.go | 2 +- internal/dmap/lock_handlers.go | 2 +- internal/dmap/lock_test.go | 2 +- internal/dmap/put.go | 2 +- internal/dmap/put_handlers.go | 2 +- internal/dmap/put_test.go | 2 +- internal/dmap/scan_handlers.go | 2 +- internal/dmap/scan_test.go | 2 +- internal/dmap/service.go | 2 +- internal/dmap/service_test.go | 2 +- internal/dmap/stats_test.go | 2 +- internal/environment/environment.go | 2 +- internal/environment/environment_test.go | 2 +- internal/kvstore/compaction.go | 2 +- internal/kvstore/compaction_test.go | 2 +- internal/kvstore/entry/entry.go | 2 +- internal/kvstore/entry/entry_test.go | 2 +- internal/kvstore/kvstore.go | 8 +++----- internal/kvstore/kvstore_test.go | 2 +- internal/kvstore/table/pack.go | 2 +- internal/kvstore/table/pack_test.go | 2 +- internal/kvstore/table/table.go | 2 +- internal/kvstore/table/table_test.go | 2 +- internal/kvstore/transport.go | 2 +- internal/protocol/cluster.go | 2 +- internal/protocol/cluster_test.go | 2 +- internal/protocol/commands.go | 2 +- internal/protocol/dmap.go | 2 +- internal/protocol/dmap_test.go | 2 +- internal/protocol/errors.go | 2 +- internal/protocol/errors_test.go | 2 +- internal/protocol/pubsub.go | 2 +- internal/protocol/system.go | 2 +- internal/protocol/system_test.go | 2 +- internal/pubsub/handlers.go | 2 +- internal/pubsub/handlers_test.go | 2 +- internal/pubsub/service.go | 2 +- internal/roundrobin/round_robin.go | 2 +- internal/roundrobin/round_robin_test.go | 2 +- internal/server/client.go | 2 +- internal/server/client_test.go | 2 +- internal/server/handler.go | 2 +- internal/server/handler_test.go | 2 +- internal/server/mux_test.go | 2 +- internal/server/server.go | 2 +- internal/server/server_test.go | 2 +- internal/service/service.go | 2 +- internal/stats/stats.go | 2 +- internal/stats/stats_test.go | 2 +- internal/testcluster/testcluster.go | 2 +- internal/testutil/mockfragment/mockfragment.go | 2 +- internal/testutil/testutil.go | 2 +- olric.go | 2 +- olric_test.go | 2 +- ping.go | 2 +- ping_test.go | 2 +- pipeline.go | 2 +- pipeline_test.go | 2 +- pkg/flog/flog.go | 2 +- pkg/neterrors/errors.go | 2 +- pkg/service_discovery/service_discovery.go | 2 +- pkg/storage/config.go | 2 +- pkg/storage/config_test.go | 2 +- pkg/storage/engine.go | 2 +- pkg/storage/entry.go | 2 +- pkg/storage/stats.go | 2 +- pubsub.go | 2 +- pubsub_test.go | 2 +- stats.go | 2 +- stats/stats.go | 2 +- stats/stats_test.go | 2 +- stats_test.go | 2 +- 171 files changed, 173 insertions(+), 175 deletions(-) diff --git a/LICENSE b/LICENSE index 6037324e..e4cbcaac 100644 --- a/LICENSE +++ b/LICENSE @@ -176,7 +176,7 @@ END OF TERMS AND CONDITIONS - Copyright 2018-2024 Burak Sezer. + Copyright 2018-2022 Burak Sezer. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/client.go b/client.go index 4035888b..c4f33ccb 100644 --- a/client.go +++ b/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster.go b/cluster.go index 7ba39a2e..95c62313 100644 --- a/cluster.go +++ b/cluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_client.go b/cluster_client.go index aab8f10e..fb7ba43f 100644 --- a/cluster_client.go +++ b/cluster_client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_client_test.go b/cluster_client_test.go index c9f488f9..e55a3232 100644 --- a/cluster_client_test.go +++ b/cluster_client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_iterator.go b/cluster_iterator.go index 9ca0b1a9..00e9f1ab 100644 --- a/cluster_iterator.go +++ b/cluster_iterator.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_iterator_test.go b/cluster_iterator_test.go index 286005fd..c89e8e45 100644 --- a/cluster_iterator_test.go +++ b/cluster_iterator_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cluster_test.go b/cluster_test.go index 24d06cb2..7fe219db 100644 --- a/cluster_test.go +++ b/cluster_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/olricd/main.go b/cmd/olricd/main.go index f61831a3..c2a3ceec 100644 --- a/cmd/olricd/main.go +++ b/cmd/olricd/main.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/olricd/server/server.go b/cmd/olricd/server/server.go index dc3a1fb9..1da45f17 100644 --- a/cmd/olricd/server/server.go +++ b/cmd/olricd/server/server.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/client.go b/config/client.go index 46fe748a..e7690c62 100644 --- a/config/client.go +++ b/config/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/config.go b/config/config.go index d2e7da9e..e4b37322 100644 --- a/config/config.go +++ b/config/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/config_test.go b/config/config_test.go index 0bc2f1a7..59b8592f 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmap.go b/config/dmap.go index 5e5a2199..3a561b90 100644 --- a/config/dmap.go +++ b/config/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmap_test.go b/config/dmap_test.go index cb768ec2..ab004d97 100644 --- a/config/dmap_test.go +++ b/config/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/dmaps.go b/config/dmaps.go index fb882725..54477a44 100644 --- a/config/dmaps.go +++ b/config/dmaps.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/engine.go b/config/engine.go index 57841de5..1cb6d87e 100644 --- a/config/engine.go +++ b/config/engine.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/engine_test.go b/config/engine_test.go index cbe3362d..30716c6d 100644 --- a/config/engine_test.go +++ b/config/engine_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/internal/loader/loader.go b/config/internal/loader/loader.go index 2ed375f5..2b345f2a 100644 --- a/config/internal/loader/loader.go +++ b/config/internal/loader/loader.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/load.go b/config/load.go index ea6b804f..39445d9e 100644 --- a/config/load.go +++ b/config/load.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/memberlist.go b/config/memberlist.go index a2c109f2..a9aa8b83 100644 --- a/config/memberlist.go +++ b/config/memberlist.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/network.go b/config/network.go index a03de140..ea0f4099 100644 --- a/config/network.go +++ b/config/network.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/config/network_test.go b/config/network_test.go index ed0a3327..2ef2de29 100644 --- a/config/network_test.go +++ b/config/network_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_client.go b/embedded_client.go index ee94c4c2..b12a5429 100644 --- a/embedded_client.go +++ b/embedded_client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_client_test.go b/embedded_client_test.go index 086eaccf..b7713eeb 100644 --- a/embedded_client_test.go +++ b/embedded_client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_iterator.go b/embedded_iterator.go index 9f6ae47f..47917670 100644 --- a/embedded_iterator.go +++ b/embedded_iterator.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/embedded_iterator_test.go b/embedded_iterator_test.go index 33cc4c31..2206868e 100644 --- a/embedded_iterator_test.go +++ b/embedded_iterator_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/events/cluster_events.go b/events/cluster_events.go index d0d62746..db135478 100644 --- a/events/cluster_events.go +++ b/events/cluster_events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/events/cluster_events_test.go b/events/cluster_events_test.go index fea564dc..bd4f7e8f 100644 --- a/events/cluster_events_test.go +++ b/events/cluster_events_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/get_response.go b/get_response.go index 310d9469..7e9c5eac 100644 --- a/get_response.go +++ b/get_response.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/get_response_test.go b/get_response_test.go index a24207d7..179282e9 100644 --- a/get_response_test.go +++ b/get_response_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hasher/hasher.go b/hasher/hasher.go index 7dd199c1..734a5c99 100644 --- a/hasher/hasher.go +++ b/hasher/hasher.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/integration_test.go b/integration_test.go index 8890beac..f1c6812a 100644 --- a/integration_test.go +++ b/integration_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/bufpool/bufpool.go b/internal/bufpool/bufpool.go index 75728c98..4199d415 100644 --- a/internal/bufpool/bufpool.go +++ b/internal/bufpool/bufpool.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/bufpool/bufpool_test.go b/internal/bufpool/bufpool_test.go index 7476bd30..9243e5bd 100644 --- a/internal/bufpool/bufpool_test.go +++ b/internal/bufpool/bufpool_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/checkpoint/checkpoint.go b/internal/checkpoint/checkpoint.go index 927abd7a..f17f9d08 100644 --- a/internal/checkpoint/checkpoint.go +++ b/internal/checkpoint/checkpoint.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/checkpoint/checkpoint_test.go b/internal/checkpoint/checkpoint_test.go index f7103dba..c1db9ae2 100644 --- a/internal/checkpoint/checkpoint_test.go +++ b/internal/checkpoint/checkpoint_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/balancer/balancer.go b/internal/cluster/balancer/balancer.go index 4958440e..03748edc 100644 --- a/internal/cluster/balancer/balancer.go +++ b/internal/cluster/balancer/balancer.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/balancer/balancer_test.go b/internal/cluster/balancer/balancer_test.go index 7780766f..4bd09805 100644 --- a/internal/cluster/balancer/balancer_test.go +++ b/internal/cluster/balancer/balancer_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/fragment.go b/internal/cluster/partitions/fragment.go index ac1a7348..ff6e19bb 100644 --- a/internal/cluster/partitions/fragment.go +++ b/internal/cluster/partitions/fragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/hkey.go b/internal/cluster/partitions/hkey.go index 51e76440..67a20d1b 100644 --- a/internal/cluster/partitions/hkey.go +++ b/internal/cluster/partitions/hkey.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/hkey_test.go b/internal/cluster/partitions/hkey_test.go index f442f32d..e74184ed 100644 --- a/internal/cluster/partitions/hkey_test.go +++ b/internal/cluster/partitions/hkey_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partition.go b/internal/cluster/partitions/partition.go index 09ff6d43..72cfad7b 100644 --- a/internal/cluster/partitions/partition.go +++ b/internal/cluster/partitions/partition.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partition_test.go b/internal/cluster/partitions/partition_test.go index cbda5d13..b413cc1c 100644 --- a/internal/cluster/partitions/partition_test.go +++ b/internal/cluster/partitions/partition_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partitions.go b/internal/cluster/partitions/partitions.go index 4e51411a..738e6042 100644 --- a/internal/cluster/partitions/partitions.go +++ b/internal/cluster/partitions/partitions.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/partitions/partitions_test.go b/internal/cluster/partitions/partitions_test.go index 88840383..9d65468d 100644 --- a/internal/cluster/partitions/partitions_test.go +++ b/internal/cluster/partitions/partitions_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/callback.go b/internal/cluster/routingtable/callback.go index 47bb9b15..8b7be14d 100644 --- a/internal/cluster/routingtable/callback.go +++ b/internal/cluster/routingtable/callback.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/callback_test.go b/internal/cluster/routingtable/callback_test.go index 34e8e043..26ca02e6 100644 --- a/internal/cluster/routingtable/callback_test.go +++ b/internal/cluster/routingtable/callback_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/discovery.go b/internal/cluster/routingtable/discovery.go index 8d29384b..d3343392 100644 --- a/internal/cluster/routingtable/discovery.go +++ b/internal/cluster/routingtable/discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/discovery_test.go b/internal/cluster/routingtable/discovery_test.go index be302ec7..4252ee57 100644 --- a/internal/cluster/routingtable/discovery_test.go +++ b/internal/cluster/routingtable/discovery_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/distribute.go b/internal/cluster/routingtable/distribute.go index c91ad3d6..533490ca 100644 --- a/internal/cluster/routingtable/distribute.go +++ b/internal/cluster/routingtable/distribute.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/distribute_test.go b/internal/cluster/routingtable/distribute_test.go index 13debf92..381528e9 100644 --- a/internal/cluster/routingtable/distribute_test.go +++ b/internal/cluster/routingtable/distribute_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/events.go b/internal/cluster/routingtable/events.go index 3b106e54..9e2d175f 100644 --- a/internal/cluster/routingtable/events.go +++ b/internal/cluster/routingtable/events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/events_test.go b/internal/cluster/routingtable/events_test.go index b2e4233a..0fd6b7f4 100644 --- a/internal/cluster/routingtable/events_test.go +++ b/internal/cluster/routingtable/events_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/handlers.go b/internal/cluster/routingtable/handlers.go index 7206d369..766a9f3c 100644 --- a/internal/cluster/routingtable/handlers.go +++ b/internal/cluster/routingtable/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/left_over_data.go b/internal/cluster/routingtable/left_over_data.go index c90188b5..cc730a83 100644 --- a/internal/cluster/routingtable/left_over_data.go +++ b/internal/cluster/routingtable/left_over_data.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/left_over_data_test.go b/internal/cluster/routingtable/left_over_data_test.go index c46a4822..7c7475fd 100644 --- a/internal/cluster/routingtable/left_over_data_test.go +++ b/internal/cluster/routingtable/left_over_data_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/members.go b/internal/cluster/routingtable/members.go index 34efdcd7..8230e96c 100644 --- a/internal/cluster/routingtable/members.go +++ b/internal/cluster/routingtable/members.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/members_test.go b/internal/cluster/routingtable/members_test.go index 5f26897b..0e939377 100644 --- a/internal/cluster/routingtable/members_test.go +++ b/internal/cluster/routingtable/members_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/operations.go b/internal/cluster/routingtable/operations.go index 0e3e7d48..b6610532 100644 --- a/internal/cluster/routingtable/operations.go +++ b/internal/cluster/routingtable/operations.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/routingtable.go b/internal/cluster/routingtable/routingtable.go index 4902fcdc..5ddbda3a 100644 --- a/internal/cluster/routingtable/routingtable.go +++ b/internal/cluster/routingtable/routingtable.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/routingtable_test.go b/internal/cluster/routingtable/routingtable_test.go index 84f232e0..d475b73a 100644 --- a/internal/cluster/routingtable/routingtable_test.go +++ b/internal/cluster/routingtable/routingtable_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cluster/routingtable/update.go b/internal/cluster/routingtable/update.go index 8f4adcff..08ce7758 100644 --- a/internal/cluster/routingtable/update.go +++ b/internal/cluster/routingtable/update.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/delegate.go b/internal/discovery/delegate.go index 46241403..477d3a3a 100644 --- a/internal/discovery/delegate.go +++ b/internal/discovery/delegate.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/discovery.go b/internal/discovery/discovery.go index d8898812..1e309b82 100644 --- a/internal/discovery/discovery.go +++ b/internal/discovery/discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/discovery_test.go b/internal/discovery/discovery_test.go index a7941d59..451d01c1 100644 --- a/internal/discovery/discovery_test.go +++ b/internal/discovery/discovery_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/events.go b/internal/discovery/events.go index a571c90e..49951b61 100644 --- a/internal/discovery/events.go +++ b/internal/discovery/events.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/member.go b/internal/discovery/member.go index 9f5f7075..2c9f5729 100644 --- a/internal/discovery/member.go +++ b/internal/discovery/member.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/discovery/member_test.go b/internal/discovery/member_test.go index 4c921804..48d6675c 100644 --- a/internal/discovery/member_test.go +++ b/internal/discovery/member_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic.go b/internal/dmap/atomic.go index 74b4d55c..b64b86b1 100644 --- a/internal/dmap/atomic.go +++ b/internal/dmap/atomic.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic_handlers.go b/internal/dmap/atomic_handlers.go index 677c7a84..090044dc 100644 --- a/internal/dmap/atomic_handlers.go +++ b/internal/dmap/atomic_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/atomic_test.go b/internal/dmap/atomic_test.go index d82c74bf..b62d75a5 100644 --- a/internal/dmap/atomic_test.go +++ b/internal/dmap/atomic_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/balance.go b/internal/dmap/balance.go index de269e67..7b12c29f 100644 --- a/internal/dmap/balance.go +++ b/internal/dmap/balance.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/balance_test.go b/internal/dmap/balance_test.go index bd0acd93..14622dc5 100644 --- a/internal/dmap/balance_test.go +++ b/internal/dmap/balance_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/compaction.go b/internal/dmap/compaction.go index 06d5a6da..1728e124 100644 --- a/internal/dmap/compaction.go +++ b/internal/dmap/compaction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/compaction_test.go b/internal/dmap/compaction_test.go index 3f8de7a0..eba390bf 100644 --- a/internal/dmap/compaction_test.go +++ b/internal/dmap/compaction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/config.go b/internal/dmap/config.go index ac08490c..7d0cbe8f 100644 --- a/internal/dmap/config.go +++ b/internal/dmap/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/config_test.go b/internal/dmap/config_test.go index c3ec16d4..05021edd 100644 --- a/internal/dmap/config_test.go +++ b/internal/dmap/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete.go b/internal/dmap/delete.go index 3446bb0d..e268eabc 100644 --- a/internal/dmap/delete.go +++ b/internal/dmap/delete.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete_handlers.go b/internal/dmap/delete_handlers.go index 5effb343..89960c23 100644 --- a/internal/dmap/delete_handlers.go +++ b/internal/dmap/delete_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/delete_test.go b/internal/dmap/delete_test.go index c6b6f617..759465e2 100644 --- a/internal/dmap/delete_test.go +++ b/internal/dmap/delete_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy.go b/internal/dmap/destroy.go index 7bb6d319..08a5496d 100644 --- a/internal/dmap/destroy.go +++ b/internal/dmap/destroy.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy_handlers.go b/internal/dmap/destroy_handlers.go index ea4eaa62..9badf5bf 100644 --- a/internal/dmap/destroy_handlers.go +++ b/internal/dmap/destroy_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/destroy_test.go b/internal/dmap/destroy_test.go index bfa356d5..057203b9 100644 --- a/internal/dmap/destroy_test.go +++ b/internal/dmap/destroy_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/dmap.go b/internal/dmap/dmap.go index cc34bd9e..3e9de9c6 100644 --- a/internal/dmap/dmap.go +++ b/internal/dmap/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/dmap_test.go b/internal/dmap/dmap_test.go index 32385d25..474e5f1a 100644 --- a/internal/dmap/dmap_test.go +++ b/internal/dmap/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/env.go b/internal/dmap/env.go index 5f804e81..923c2e33 100644 --- a/internal/dmap/env.go +++ b/internal/dmap/env.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/eviction.go b/internal/dmap/eviction.go index bd1123af..62af4015 100644 --- a/internal/dmap/eviction.go +++ b/internal/dmap/eviction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/eviction_test.go b/internal/dmap/eviction_test.go index 6460a056..fa52630e 100644 --- a/internal/dmap/eviction_test.go +++ b/internal/dmap/eviction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire.go b/internal/dmap/expire.go index 713e8955..419ce0e8 100644 --- a/internal/dmap/expire.go +++ b/internal/dmap/expire.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire_handlers.go b/internal/dmap/expire_handlers.go index 2ee26180..730d534c 100644 --- a/internal/dmap/expire_handlers.go +++ b/internal/dmap/expire_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/expire_test.go b/internal/dmap/expire_test.go index 47f38655..7ce689ea 100644 --- a/internal/dmap/expire_test.go +++ b/internal/dmap/expire_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/fragment.go b/internal/dmap/fragment.go index 52f2aa06..d5e4e1b2 100644 --- a/internal/dmap/fragment.go +++ b/internal/dmap/fragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/fragment_test.go b/internal/dmap/fragment_test.go index 6ce1c92a..e62aa208 100644 --- a/internal/dmap/fragment_test.go +++ b/internal/dmap/fragment_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get.go b/internal/dmap/get.go index b0688e80..10e481e6 100644 --- a/internal/dmap/get.go +++ b/internal/dmap/get.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get_handlers.go b/internal/dmap/get_handlers.go index a0515094..ff75a63b 100644 --- a/internal/dmap/get_handlers.go +++ b/internal/dmap/get_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/get_test.go b/internal/dmap/get_test.go index e41dc8e0..dd878954 100644 --- a/internal/dmap/get_test.go +++ b/internal/dmap/get_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/handlers.go b/internal/dmap/handlers.go index 28767f56..9c0c7956 100644 --- a/internal/dmap/handlers.go +++ b/internal/dmap/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/janitor.go b/internal/dmap/janitor.go index 5fc62ae6..df598f08 100644 --- a/internal/dmap/janitor.go +++ b/internal/dmap/janitor.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock.go b/internal/dmap/lock.go index 17fdb807..ea0112ac 100644 --- a/internal/dmap/lock.go +++ b/internal/dmap/lock.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock_handlers.go b/internal/dmap/lock_handlers.go index e02a98cb..cdad4d64 100644 --- a/internal/dmap/lock_handlers.go +++ b/internal/dmap/lock_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/lock_test.go b/internal/dmap/lock_test.go index 2c225b62..edcb115a 100644 --- a/internal/dmap/lock_test.go +++ b/internal/dmap/lock_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put.go b/internal/dmap/put.go index 08b13721..9c4aed33 100644 --- a/internal/dmap/put.go +++ b/internal/dmap/put.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put_handlers.go b/internal/dmap/put_handlers.go index 02256015..0e4e2af0 100644 --- a/internal/dmap/put_handlers.go +++ b/internal/dmap/put_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/put_test.go b/internal/dmap/put_test.go index 7f51037c..9d035d08 100644 --- a/internal/dmap/put_test.go +++ b/internal/dmap/put_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/scan_handlers.go b/internal/dmap/scan_handlers.go index 5487be06..1b7c7f8c 100644 --- a/internal/dmap/scan_handlers.go +++ b/internal/dmap/scan_handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/scan_test.go b/internal/dmap/scan_test.go index 49829e70..2b3ef1fb 100644 --- a/internal/dmap/scan_test.go +++ b/internal/dmap/scan_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/service.go b/internal/dmap/service.go index fae94016..8a0868da 100644 --- a/internal/dmap/service.go +++ b/internal/dmap/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/service_test.go b/internal/dmap/service_test.go index 43b62b21..2b5b1062 100644 --- a/internal/dmap/service_test.go +++ b/internal/dmap/service_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/dmap/stats_test.go b/internal/dmap/stats_test.go index 07bf2744..281773f4 100644 --- a/internal/dmap/stats_test.go +++ b/internal/dmap/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/environment/environment.go b/internal/environment/environment.go index 751daeed..24525bb8 100644 --- a/internal/environment/environment.go +++ b/internal/environment/environment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/environment/environment_test.go b/internal/environment/environment_test.go index a2bd5e16..d216a6a8 100644 --- a/internal/environment/environment_test.go +++ b/internal/environment/environment_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/compaction.go b/internal/kvstore/compaction.go index 9e20aa78..276fdbcc 100644 --- a/internal/kvstore/compaction.go +++ b/internal/kvstore/compaction.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/compaction_test.go b/internal/kvstore/compaction_test.go index d73eea1a..753d2040 100644 --- a/internal/kvstore/compaction_test.go +++ b/internal/kvstore/compaction_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/entry/entry.go b/internal/kvstore/entry/entry.go index c96018b5..f1cf4c23 100644 --- a/internal/kvstore/entry/entry.go +++ b/internal/kvstore/entry/entry.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/entry/entry_test.go b/internal/kvstore/entry/entry_test.go index 1f9bea8b..d5f0cf2b 100644 --- a/internal/kvstore/entry/entry_test.go +++ b/internal/kvstore/entry/entry_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/kvstore.go b/internal/kvstore/kvstore.go index c5dde94a..72ed3be5 100644 --- a/internal/kvstore/kvstore.go +++ b/internal/kvstore/kvstore.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -12,10 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* -Package kvstore implements a GC friendly in-memory storage engine by using -built-in maps and byte slices. It also supports compaction. -*/ +/*Package kvstore implements a GC friendly in-memory storage engine by using +built-in maps and byte slices. It also supports compaction.*/ package kvstore import ( diff --git a/internal/kvstore/kvstore_test.go b/internal/kvstore/kvstore_test.go index 92ef9508..0e0c7912 100644 --- a/internal/kvstore/kvstore_test.go +++ b/internal/kvstore/kvstore_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/pack.go b/internal/kvstore/table/pack.go index c20a1df1..3f649f66 100644 --- a/internal/kvstore/table/pack.go +++ b/internal/kvstore/table/pack.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/pack_test.go b/internal/kvstore/table/pack_test.go index d6e59d3f..1c42c71b 100644 --- a/internal/kvstore/table/pack_test.go +++ b/internal/kvstore/table/pack_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/table.go b/internal/kvstore/table/table.go index fe8fc61f..4a995d2b 100644 --- a/internal/kvstore/table/table.go +++ b/internal/kvstore/table/table.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/table/table_test.go b/internal/kvstore/table/table_test.go index da1be6a2..2cf9ead3 100644 --- a/internal/kvstore/table/table_test.go +++ b/internal/kvstore/table/table_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/kvstore/transport.go b/internal/kvstore/transport.go index 6a5305d1..cad6dc77 100644 --- a/internal/kvstore/transport.go +++ b/internal/kvstore/transport.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/cluster.go b/internal/protocol/cluster.go index c7fd86c9..633c4ddf 100644 --- a/internal/protocol/cluster.go +++ b/internal/protocol/cluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/cluster_test.go b/internal/protocol/cluster_test.go index 13efd17b..45c8d293 100644 --- a/internal/protocol/cluster_test.go +++ b/internal/protocol/cluster_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/commands.go b/internal/protocol/commands.go index 2646ca59..b9da9cf4 100644 --- a/internal/protocol/commands.go +++ b/internal/protocol/commands.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/dmap.go b/internal/protocol/dmap.go index c5125416..047a8d2e 100644 --- a/internal/protocol/dmap.go +++ b/internal/protocol/dmap.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/dmap_test.go b/internal/protocol/dmap_test.go index 29b546e0..e66c0d3d 100644 --- a/internal/protocol/dmap_test.go +++ b/internal/protocol/dmap_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/errors.go b/internal/protocol/errors.go index 18a3ddad..1854c5e6 100644 --- a/internal/protocol/errors.go +++ b/internal/protocol/errors.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/errors_test.go b/internal/protocol/errors_test.go index 607177c6..731940ca 100644 --- a/internal/protocol/errors_test.go +++ b/internal/protocol/errors_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/pubsub.go b/internal/protocol/pubsub.go index 34628a8c..d5bcb4de 100644 --- a/internal/protocol/pubsub.go +++ b/internal/protocol/pubsub.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/system.go b/internal/protocol/system.go index 40a3d62b..4f6a56a4 100644 --- a/internal/protocol/system.go +++ b/internal/protocol/system.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/protocol/system_test.go b/internal/protocol/system_test.go index 4b0414cd..fbbdec74 100644 --- a/internal/protocol/system_test.go +++ b/internal/protocol/system_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/handlers.go b/internal/pubsub/handlers.go index 06c8436c..463bdb12 100644 --- a/internal/pubsub/handlers.go +++ b/internal/pubsub/handlers.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/handlers_test.go b/internal/pubsub/handlers_test.go index c65bd1b3..3696c82b 100644 --- a/internal/pubsub/handlers_test.go +++ b/internal/pubsub/handlers_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/pubsub/service.go b/internal/pubsub/service.go index f54f6254..bb2c7092 100644 --- a/internal/pubsub/service.go +++ b/internal/pubsub/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/roundrobin/round_robin.go b/internal/roundrobin/round_robin.go index 20645125..8e46f6c5 100644 --- a/internal/roundrobin/round_robin.go +++ b/internal/roundrobin/round_robin.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/roundrobin/round_robin_test.go b/internal/roundrobin/round_robin_test.go index 2ced574f..9c3becdc 100644 --- a/internal/roundrobin/round_robin_test.go +++ b/internal/roundrobin/round_robin_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/client.go b/internal/server/client.go index 9176cd42..ac001dd8 100644 --- a/internal/server/client.go +++ b/internal/server/client.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/client_test.go b/internal/server/client_test.go index 21402dcd..6003df40 100644 --- a/internal/server/client_test.go +++ b/internal/server/client_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/handler.go b/internal/server/handler.go index d1ee3a23..c5d2a490 100644 --- a/internal/server/handler.go +++ b/internal/server/handler.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/handler_test.go b/internal/server/handler_test.go index dbf03d2a..7368adf5 100644 --- a/internal/server/handler_test.go +++ b/internal/server/handler_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/mux_test.go b/internal/server/mux_test.go index ed4a7a0b..ec3ecd1f 100644 --- a/internal/server/mux_test.go +++ b/internal/server/mux_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/server.go b/internal/server/server.go index c7056e40..38ddcc0a 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/server/server_test.go b/internal/server/server_test.go index 43bd2847..e1269e3c 100644 --- a/internal/server/server_test.go +++ b/internal/server/server_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/service/service.go b/internal/service/service.go index 1902a430..6196b1b6 100644 --- a/internal/service/service.go +++ b/internal/service/service.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/stats/stats.go b/internal/stats/stats.go index c863bc31..cb346746 100644 --- a/internal/stats/stats.go +++ b/internal/stats/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/stats/stats_test.go b/internal/stats/stats_test.go index e9ac5f7c..d11e8491 100644 --- a/internal/stats/stats_test.go +++ b/internal/stats/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testcluster/testcluster.go b/internal/testcluster/testcluster.go index 7d0fb244..0e9cec24 100644 --- a/internal/testcluster/testcluster.go +++ b/internal/testcluster/testcluster.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testutil/mockfragment/mockfragment.go b/internal/testutil/mockfragment/mockfragment.go index f9d7c7ee..4c726946 100644 --- a/internal/testutil/mockfragment/mockfragment.go +++ b/internal/testutil/mockfragment/mockfragment.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/testutil/testutil.go b/internal/testutil/testutil.go index 813b862b..444e138d 100644 --- a/internal/testutil/testutil.go +++ b/internal/testutil/testutil.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/olric.go b/olric.go index 25b487cb..7b638376 100644 --- a/olric.go +++ b/olric.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/olric_test.go b/olric_test.go index 7897db78..52a88bc9 100644 --- a/olric_test.go +++ b/olric_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/ping.go b/ping.go index 032a3385..dd4b7082 100644 --- a/ping.go +++ b/ping.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/ping_test.go b/ping_test.go index 913c083c..fb3a7cab 100644 --- a/ping_test.go +++ b/ping_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pipeline.go b/pipeline.go index 87d36a9f..09334f73 100644 --- a/pipeline.go +++ b/pipeline.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pipeline_test.go b/pipeline_test.go index afc7d2bb..527d74dc 100644 --- a/pipeline_test.go +++ b/pipeline_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/flog/flog.go b/pkg/flog/flog.go index dd100571..362e1aa8 100644 --- a/pkg/flog/flog.go +++ b/pkg/flog/flog.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/neterrors/errors.go b/pkg/neterrors/errors.go index 9e14975f..d99781b7 100644 --- a/pkg/neterrors/errors.go +++ b/pkg/neterrors/errors.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/service_discovery/service_discovery.go b/pkg/service_discovery/service_discovery.go index 5ff980a8..71bc0563 100644 --- a/pkg/service_discovery/service_discovery.go +++ b/pkg/service_discovery/service_discovery.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/config.go b/pkg/storage/config.go index d2086297..6cefd81f 100644 --- a/pkg/storage/config.go +++ b/pkg/storage/config.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/config_test.go b/pkg/storage/config_test.go index f7b4cf0c..0ba201bd 100644 --- a/pkg/storage/config_test.go +++ b/pkg/storage/config_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/engine.go b/pkg/storage/engine.go index fac9571d..5750e143 100644 --- a/pkg/storage/engine.go +++ b/pkg/storage/engine.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/entry.go b/pkg/storage/entry.go index 915b684e..da5a6987 100644 --- a/pkg/storage/entry.go +++ b/pkg/storage/entry.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/storage/stats.go b/pkg/storage/stats.go index 5c520575..da06af91 100644 --- a/pkg/storage/stats.go +++ b/pkg/storage/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pubsub.go b/pubsub.go index d4618fe5..e5e40176 100644 --- a/pubsub.go +++ b/pubsub.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pubsub_test.go b/pubsub_test.go index 008fb717..28cf41a1 100644 --- a/pubsub_test.go +++ b/pubsub_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats.go b/stats.go index ed87da8e..058d5ffd 100644 --- a/stats.go +++ b/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats.go b/stats/stats.go index 330c5328..20d60e84 100644 --- a/stats/stats.go +++ b/stats/stats.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats_test.go b/stats/stats_test.go index d0150f52..b13865bb 100644 --- a/stats/stats_test.go +++ b/stats/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats_test.go b/stats_test.go index 0c14e8d4..efa45466 100644 --- a/stats_test.go +++ b/stats_test.go @@ -1,4 +1,4 @@ -// Copyright 2018-2024 Burak Sezer +// Copyright 2018-2022 Burak Sezer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.