diff --git a/tools/migratedb/migratedb.py b/tools/migratedb/migratedb.py index 07add44..06c1d74 100644 --- a/tools/migratedb/migratedb.py +++ b/tools/migratedb/migratedb.py @@ -64,9 +64,9 @@ def saveKeys(r, keys, curr_file): ] ) + '\n') if expire < 0: - print('[ERROR] ' + key + ' ttl < 0') + print('[WARNING] ' + key + ' ttl < 0') if expire > 3600 * 24: - print('[ERROR] ' + key + ' ttl > 3600 * 24') + print('[WARNING] ' + key + ' ttl > 3600 * 24') def exportRedis(context, redis_conf, redis_rule_conf): redis_dir = CONFIG_DIR + 'out/' + context['channel'] + '/redis/'