From fe884f82094586379a1229272e21fc5f39cb71ad Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Thu, 12 May 2016 20:49:15 -0700 Subject: [PATCH] raft: update LICENSE header --- raft/diff_test.go | 2 +- raft/doc.go | 2 +- raft/example_test.go | 2 +- raft/log.go | 2 +- raft/log_test.go | 2 +- raft/log_unstable.go | 2 +- raft/log_unstable_test.go | 2 +- raft/logger.go | 2 +- raft/node.go | 2 +- raft/node_bench_test.go | 2 +- raft/node_test.go | 2 +- raft/progress.go | 2 +- raft/progress_test.go | 2 +- raft/raft.go | 2 +- raft/raft_flow_control_test.go | 2 +- raft/raft_paper_test.go | 2 +- raft/raft_snap_test.go | 2 +- raft/raft_test.go | 2 +- raft/rafttest/doc.go | 2 +- raft/rafttest/network.go | 2 +- raft/rafttest/network_test.go | 2 +- raft/rafttest/node.go | 2 +- raft/rafttest/node_bench_test.go | 2 +- raft/rafttest/node_test.go | 2 +- raft/rawnode.go | 2 +- raft/rawnode_test.go | 2 +- raft/status.go | 2 +- raft/storage.go | 2 +- raft/storage_test.go | 2 +- raft/util.go | 2 +- raft/util_test.go | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/raft/diff_test.go b/raft/diff_test.go index 4e0702436..1c4c5272d 100644 --- a/raft/diff_test.go +++ b/raft/diff_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/doc.go b/raft/doc.go index 1aff1c085..80f56db75 100644 --- a/raft/doc.go +++ b/raft/doc.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/example_test.go b/raft/example_test.go index 19cc8de6b..26a1e0249 100644 --- a/raft/example_test.go +++ b/raft/example_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/log.go b/raft/log.go index 7a2709afb..263f42255 100644 --- a/raft/log.go +++ b/raft/log.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/log_test.go b/raft/log_test.go index 882b0efe1..b70d6c057 100644 --- a/raft/log_test.go +++ b/raft/log_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/log_unstable.go b/raft/log_unstable.go index df90178f9..bfd4daa67 100644 --- a/raft/log_unstable.go +++ b/raft/log_unstable.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/log_unstable_test.go b/raft/log_unstable_test.go index 8012795ec..af042f9df 100644 --- a/raft/log_unstable_test.go +++ b/raft/log_unstable_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/logger.go b/raft/logger.go index 31c194a06..92e55b373 100644 --- a/raft/logger.go +++ b/raft/logger.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/node.go b/raft/node.go index 144b8ca47..0ddcfd5f6 100644 --- a/raft/node.go +++ b/raft/node.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/node_bench_test.go b/raft/node_bench_test.go index f247e5e19..4e60634a2 100644 --- a/raft/node_bench_test.go +++ b/raft/node_bench_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/node_test.go b/raft/node_test.go index c4be7d82c..d24b3c707 100644 --- a/raft/node_test.go +++ b/raft/node_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/progress.go b/raft/progress.go index 11f53409d..84852dc85 100644 --- a/raft/progress.go +++ b/raft/progress.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/progress_test.go b/raft/progress_test.go index 4cea14e87..e50593b9f 100644 --- a/raft/progress_test.go +++ b/raft/progress_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/raft.go b/raft/raft.go index a236b8241..f1027d439 100644 --- a/raft/raft.go +++ b/raft/raft.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/raft_flow_control_test.go b/raft/raft_flow_control_test.go index b54a09c17..c745050f8 100644 --- a/raft/raft_flow_control_test.go +++ b/raft/raft_flow_control_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/raft_paper_test.go b/raft/raft_paper_test.go index 35b7332d0..cd5c3e94e 100644 --- a/raft/raft_paper_test.go +++ b/raft/raft_paper_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/raft_snap_test.go b/raft/raft_snap_test.go index a0ff01d15..3908d5812 100644 --- a/raft/raft_snap_test.go +++ b/raft/raft_snap_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/raft_test.go b/raft/raft_test.go index 4c7a48150..4e83850af 100644 --- a/raft/raft_test.go +++ b/raft/raft_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/doc.go b/raft/rafttest/doc.go index 85ef5e7ff..bba9a1a38 100644 --- a/raft/rafttest/doc.go +++ b/raft/rafttest/doc.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/network.go b/raft/rafttest/network.go index 1bc6fd988..39af2814a 100644 --- a/raft/rafttest/network.go +++ b/raft/rafttest/network.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/network_test.go b/raft/rafttest/network_test.go index 6697947d3..52cde4393 100644 --- a/raft/rafttest/network_test.go +++ b/raft/rafttest/network_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/node.go b/raft/rafttest/node.go index 72f30f0d4..f68dafb0c 100644 --- a/raft/rafttest/node.go +++ b/raft/rafttest/node.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/node_bench_test.go b/raft/rafttest/node_bench_test.go index 9e4cf4c11..1aa13c7b6 100644 --- a/raft/rafttest/node_bench_test.go +++ b/raft/rafttest/node_bench_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rafttest/node_test.go b/raft/rafttest/node_test.go index 94b9ce1c6..623ab41db 100644 --- a/raft/rafttest/node_test.go +++ b/raft/rafttest/node_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rawnode.go b/raft/rawnode.go index 47e76c515..4cea62f64 100644 --- a/raft/rawnode.go +++ b/raft/rawnode.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/rawnode_test.go b/raft/rawnode_test.go index 2f1262f46..112e3f5df 100644 --- a/raft/rawnode_test.go +++ b/raft/rawnode_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/status.go b/raft/status.go index d18a48954..b690fa56b 100644 --- a/raft/status.go +++ b/raft/status.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/storage.go b/raft/storage.go index 78d192556..a5f2d28ea 100644 --- a/raft/storage.go +++ b/raft/storage.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/storage_test.go b/raft/storage_test.go index ebba587d5..91fc4e575 100644 --- a/raft/storage_test.go +++ b/raft/storage_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/util.go b/raft/util.go index c8c2615d8..c57855a17 100644 --- a/raft/util.go +++ b/raft/util.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/raft/util_test.go b/raft/util_test.go index 920879df9..d26e90d90 100644 --- a/raft/util_test.go +++ b/raft/util_test.go @@ -1,4 +1,4 @@ -// Copyright 2015 CoreOS, Inc. +// Copyright 2015 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.