Skip to content
Snippets Groups Projects
Commit e2820239 authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

backup: better warning wording

parent 9f9ba07b
No related branches found
No related tags found
1 merge request!1254backup: put context into server_t...
Pipeline #76477 passed
......@@ -451,7 +451,7 @@ static int zone_backup_cmd(zone_t *zone, ctl_args_t *args)
{
zone_backup_ctx_t *ctx = latest_backup_ctx(args);
if (zone->backup_ctx != NULL) {
log_zone_warning(zone->name, "zone backup already in progress, skipping zone");
log_zone_warning(zone->name, "backup already in progress, skipping zone");
return KNOT_EOK;
}
zone->backup_ctx = ctx;
......
/* Copyright (C) 2020 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
/* Copyright (C) 2021 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
......@@ -139,7 +139,8 @@ void zone_backups_deinit(zone_backup_ctxs_t *ctxs)
{
zone_backup_ctx_t *ctx, *nxt;
WALK_LIST_DELSAFE(ctx, nxt, ctxs->ctxs) {
log_warning("backup in progress, terminating, will be incomplete");
log_warning("backup to '%s' in progress, terminating, will be incomplete",
ctx->backup_dir);
ctx->readers = 1; // ensure full deinit
zone_backup_deinit(ctx);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment