from random import randint


def random_db_name():
    return 'test' + str(randint(0, 1000000))


failed_requests = []