Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change legal header on all source code files #1664

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/csharp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Collections.Concurrent;
using System.Diagnostics;
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/node/node_benchmark.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import { writeFileSync } from "fs";
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/python/python_benchmark.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
# Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

import argparse
import asyncio
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/rust/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

#[cfg(not(target_env = "msvc"))]
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/utilities/csv_exporter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/python3

# Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
# Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

import csv
import json
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/utilities/fill_db.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import {
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/utilities/flush_db.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import { RedisClientType, RedisClusterType } from "redis";
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/utilities/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import commandLineArgs from "command-line-args";
Expand Down
2 changes: 1 addition & 1 deletion csharp/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ indent_size = 2
[*.cs]

# License header
file_header_template = Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
file_header_template = Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

# Organize usings
dotnet_separate_import_directive_groups = true
Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/AsyncClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Buffers;
using System.Runtime.InteropServices;
Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0


using System.Runtime.InteropServices;
Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/Message.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Diagnostics;
using System.Runtime.CompilerServices;
Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/MessageContainer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Collections.Concurrent;

Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0


using System.Runtime.CompilerServices;
Expand Down
2 changes: 1 addition & 1 deletion csharp/lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use glide_core::client;
use glide_core::client::Client as GlideClient;
Expand Down
2 changes: 1 addition & 1 deletion csharp/tests/Integration/GetAndSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Runtime.InteropServices;

Expand Down
2 changes: 1 addition & 1 deletion csharp/tests/Integration/IntegrationTestBase.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

using System.Diagnostics;

Expand Down
2 changes: 1 addition & 1 deletion csharp/tests/Usings.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

global using Xunit;
2 changes: 1 addition & 1 deletion examples/node/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import { Logger, RedisClient, RedisClusterClient } from "@aws/glide-for-redis";
Expand Down
6 changes: 3 additions & 3 deletions examples/python/client_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
# Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

import asyncio
from typing import Optional, Union
Expand Down Expand Up @@ -42,7 +42,7 @@ async def test_standalone_client(host: str = "localhost", port: int = 6379):
# Check `RedisClientConfiguration/ClusterClientConfiguration` for additional options.
config = BaseClientConfiguration(
addresses=addresses,
client_name="test_standalone_client"
client_name="test_standalone_client",
# if the server use TLS, you'll need to enable it. Otherwise the connection attempt will time out silently.
# use_tls=True
)
Expand All @@ -61,7 +61,7 @@ async def test_cluster_client(host: str = "localhost", port: int = 6379):
# Check `RedisClientConfiguration/ClusterClientConfiguration` for additional options.
config = BaseClientConfiguration(
addresses=addresses,
client_name="test_cluster_client"
client_name="test_cluster_client",
# if the cluster nodes use TLS, you'll need to enable it. Otherwise the connection attempt will time out silently.
# use_tls=True
)
Expand Down
2 changes: 1 addition & 1 deletion glide-core/benches/connections_benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use criterion::{criterion_group, criterion_main, Criterion};
use futures::future::join_all;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/benches/memory_benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use glide_core::{
client::Client,
Expand Down
2 changes: 1 addition & 1 deletion glide-core/benches/rotating_buffer_benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use std::io::Write;

Expand Down
2 changes: 1 addition & 1 deletion glide-core/build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

#[cfg(feature = "socket-layer")]
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/client/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
mod types;

Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/client/reconnecting_connection.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use super::{NodeAddress, TlsMode};
use crate::retry_strategies::RetryStrategy;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/client/standalone_client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use super::get_redis_connection_info;
use super::reconnecting_connection::ReconnectingConnection;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/client/types.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

use logger_core::log_warn;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/client/value_conversion.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use redis::{
cluster_routing::Routable, from_owned_redis_value, Cmd, ErrorKind, RedisResult, Value,
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

use redis::RedisError;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

#[cfg(feature = "socket-layer")]
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/request_type.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use redis::{cmd, Cmd};

Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/retry_strategies.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use crate::client::ConnectionRetryStrategy;
use std::time::Duration;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/rotating_buffer.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
#[allow(unused_imports)]
use bytes::{Bytes, BytesMut};
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/scripts_container.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use arcstr::ArcStr;
use logger_core::log_info;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/socket_listener.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use super::rotating_buffer::RotatingBuffer;
use crate::client::Client;
Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/test_client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
mod utilities;

Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/test_cluster_client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
mod utilities;

Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/test_socket_listener.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

#![cfg(feature = "socket-layer")]
Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/test_standalone_client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
mod utilities;

Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/utilities/cluster.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use super::{create_connection_request, ClusterMode, TestConfiguration};
use futures::future::{join_all, BoxFuture};
Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/utilities/mocks.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use futures_intrusive::sync::ManualResetEvent;
use redis::{Cmd, ConnectionAddr, Value};
Expand Down
2 changes: 1 addition & 1 deletion glide-core/tests/utilities/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

#![allow(dead_code)]
Expand Down
2 changes: 1 addition & 1 deletion go/api/config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

package api

Expand Down
2 changes: 1 addition & 1 deletion go/api/config_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

package api

Expand Down
4 changes: 2 additions & 2 deletions go/cbindgen.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
# Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
language = "C"

header = "/* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */"
header = "/* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */"

[parse]
parse_deps = true
Expand Down
2 changes: 1 addition & 1 deletion go/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

// TODO: Investigate using uniffi bindings for Go instead of cbindgen
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks;

import static glide.benchmarks.utils.Benchmarking.testClientSetGet;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients;

import java.util.concurrent.ExecutionException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients;

import glide.benchmarks.utils.ConnectionSettings;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients;

/** A Redis client with sync capabilities */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients.glide;

import static java.util.concurrent.TimeUnit.SECONDS;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients.jedis;

import glide.benchmarks.clients.SyncClient;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.clients.lettuce;

import glide.benchmarks.clients.AsyncClient;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.utils;

import glide.benchmarks.BenchmarkingApp;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.utils;

public enum ChosenAction {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
/** Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.benchmarks.utils;

/** Redis-client settings */
Expand Down
Loading
Loading