Skip to content

Commit 9be1e8d

Browse files
committed
Bug fix
1 parent 677f5ee commit 9be1e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/flypg/pg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ func (c *PGConfig) SetDefaults() error {
240240
"hot_standby": true,
241241
"archive_mode": true,
242242
"archive_command": "'/bin/true'",
243-
"shared_preload_libraries": strings.Join(sharedPreloadLibraries, ", "),
243+
"shared_preload_libraries": fmt.Sprintf("'%s'", strings.Join(sharedPreloadLibraries, ",")),
244244
}
245245

246246
c.internalConfig = conf

0 commit comments

Comments
 (0)