Skip to content

Commit f942974

Browse files
committed
cleanup
1 parent e6bd3ea commit f942974

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test_demo_apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66

77
jobs:
8-
publish:
8+
publish-maven-local:
99
runs-on: ubuntu-latest
1010
outputs:
1111
version: ${{ steps.version.outputs.version }}

transact-cli/src/main/java/dev/dbos/transact/cli/MigrateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public Integer call() throws Exception {
3838
out.format(" System Database: %s\n", dbOptions.url());
3939
out.format(" System Database User: %s\n", dbOptions.user());
4040

41-
// TODO: real fix
41+
// TODO: add option for useListenNotify
4242
MigrationManager.runMigrations(
4343
dbOptions.url(), dbOptions.user(), dbOptions.password(), dbOptions.schema(), true);
4444
grantDBOSSchemaPermissions(out, dbOptions.schema());

transact/src/test/java/dev/dbos/transact/invocation/CustomSchemaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.junit.jupiter.api.Test;
2222

2323
public class CustomSchemaTest {
24-
@AutoClose final PgContainer pgContainer = new PgContainer();
24+
@AutoClose final PgContainer pgContainer = PgContainer.createFresh();
2525
private static final String schema = "F8nny_sCHem@-n@m3";
2626
@AutoClose DBOS dbos;
2727
private HawkService proxy;

0 commit comments

Comments
 (0)