Skip to content

Commit 859b40d

Browse files
committed
minor spelling fix
1 parent fa326c9 commit 859b40d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/backup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,8 +1450,8 @@ wait_wal_lsn(XLogRecPtr target_lsn, bool is_start_lsn, TimeLineID tli,
14501450

14511451
if (!stream_wal && is_start_lsn && try_count == 30)
14521452
elog(WARNING, "By default pg_probackup assume WAL delivery method to be ARCHIVE. "
1453-
"If continius archiving is not set up, use '--stream' option to make autonomous backup. "
1454-
"Otherwise check that continius archiving works correctly.");
1453+
"If continuous archiving is not set up, use '--stream' option to make autonomous backup. "
1454+
"Otherwise check that continuous archiving works correctly.");
14551455

14561456
if (timeout > 0 && try_count > timeout)
14571457
{

src/pg_probackup.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,8 @@ compress_init(void)
860860
{
861861
if (instance_config.compress_level != COMPRESS_LEVEL_DEFAULT
862862
&& instance_config.compress_alg == NOT_DEFINED_COMPRESS)
863-
elog(ERROR, "Cannot specify compress-level option without compress-alg option");
863+
elog(ERROR, "Cannot specify compress-level option alone without "
864+
"compress-algorithm option");
864865
}
865866

866867
if (instance_config.compress_level < 0 || instance_config.compress_level > 9)

src/validate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pgBackupValidateFiles(void *arg)
255255
continue;
256256

257257
if (progress)
258-
elog(INFO, "Progress: (%d/%d). Process file \"%s\"",
258+
elog(INFO, "Progress: (%d/%d). Validate file \"%s\"",
259259
i + 1, num_files, file->path);
260260

261261
/*

0 commit comments

Comments
 (0)