Skip to content

Commit 1495294

Browse files
authored
persist by default (#11)
1 parent 4bfe5d3 commit 1495294

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def run(
1818
config_file_artifact_name="",
1919
seed_file_artifact_name="",
2020
extra_configs=[],
21-
persistent=False,
21+
persistent=True,
2222
):
2323
"""Launches a Postgresql database instance, optionally seeding it with a SQL file script
2424
@@ -33,7 +33,7 @@ def run(
3333
seed_file_artifact_name (string): The name of a files artifact containing seed data
3434
If not empty, the Postgres server will be populated with the data upon start
3535
extra_configs (list[string]): Each argument gets passed as a '-c' argument to the Postgres server
36-
persistent (bool): Whether the data should be persisted. Defaults to False; Note that this isn't supported on multi node k8s cluster as of 2023-10-16
36+
persistent (bool): Whether the data should be persisted. Defaults to True; Note that this isn't supported on multi node k8s cluster as of 2023-10-16
3737
Returns:
3838
An object containing useful information about the Postgres database running inside the enclave:
3939
```

0 commit comments

Comments
 (0)