From 451cb2052fa9411bb7b61a0f780b7abf68a70be6 Mon Sep 17 00:00:00 2001 From: Pavel Tcholakov Date: Tue, 12 Nov 2024 14:40:54 +0200 Subject: [PATCH] Self-review fixups --- crates/worker/src/partition/snapshots/mod.rs | 10 ++++++++++ crates/worker/src/partition/snapshots/producer.rs | 2 +- crates/worker/src/partition/snapshots/repository.rs | 10 ++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/crates/worker/src/partition/snapshots/mod.rs b/crates/worker/src/partition/snapshots/mod.rs index 7af6156a9..f0d76a129 100644 --- a/crates/worker/src/partition/snapshots/mod.rs +++ b/crates/worker/src/partition/snapshots/mod.rs @@ -1,2 +1,12 @@ +// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH. +// All rights reserved. +// +// Use of this software is governed by the Business Source License +// included in the LICENSE file. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0. + pub mod producer; pub mod repository; \ No newline at end of file diff --git a/crates/worker/src/partition/snapshots/producer.rs b/crates/worker/src/partition/snapshots/producer.rs index 74abd5e50..38f0b1150 100644 --- a/crates/worker/src/partition/snapshots/producer.rs +++ b/crates/worker/src/partition/snapshots/producer.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH. +// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH. // All rights reserved. // // Use of this software is governed by the Business Source License diff --git a/crates/worker/src/partition/snapshots/repository.rs b/crates/worker/src/partition/snapshots/repository.rs index 3993a9021..f21cf5fd8 100644 --- a/crates/worker/src/partition/snapshots/repository.rs +++ b/crates/worker/src/partition/snapshots/repository.rs @@ -1,3 +1,13 @@ +// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH. +// All rights reserved. +// +// Use of this software is governed by the Business Source License +// included in the LICENSE file. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0. + use std::path::{Path, PathBuf}; use std::sync::Arc;