1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-03-17 21:18:00 +02:00

Use stream_wal instead of current.stream

This commit is contained in:
Arthur Zakirov 2018-02-27 18:39:07 +03:00
parent 052329fc85
commit 8977e0e3df

View File

@ -437,7 +437,7 @@ main(int argc, char *argv[])
elog(INFO, "Backup start, pg_probackup version: %s, backup ID: %s, backup mode: %s, instance: %s, stream: %s, remote: %s",
PROGRAM_VERSION, base36enc(start_time), backup_mode, instance_name,
current.stream ? "true" : "false", is_remote_backup ? "true" : "false");
stream_wal ? "true" : "false", is_remote_backup ? "true" : "false");
return do_backup(start_time);
}