Add newline at end of postgresql.conf

This commit is contained in:
Heikki Linnakangas
2023-03-09 15:28:53 +02:00
committed by Heikki Linnakangas
parent 42ec79fb0d
commit 856d01ff68
2 changed files with 3 additions and 1 deletions

View File

@@ -109,6 +109,7 @@ impl PgOptionsSerialize for GenericOptions {
.map(|op| op.to_pg_setting())
.collect::<Vec<String>>()
.join("\n")
+ "\n" // newline after last setting
} else {
"".to_string()
}

View File

@@ -49,7 +49,8 @@ max_replication_slots = 10
neon.timeline_id = '2414a61ffc94e428f14b5758fe308e13'
shared_preload_libraries = 'neon'
synchronous_standby_names = 'walproposer'
neon.pageserver_connstring = 'host=127.0.0.1 port=6400'"#
neon.pageserver_connstring = 'host=127.0.0.1 port=6400'
"#
);
}