# # Copyright (C) 2022-present ScyllaDB # # SPDX-License-Identifier: AGPL-3.0-or-later # import time unique_name_prefix = 'test_' def unique_name(): current_ms = int(round(time.time() * 1000)) # If unique_name() is called twice in the same millisecond... if unique_name.last_ms >= current_ms: current_ms = unique_name.last_ms + 1 unique_name.last_ms = current_ms return unique_name_prefix + str(current_ms) unique_name.last_ms = 0