Skip to content

Commit c1ff3c2

Browse files
committed
fix
1 parent 6a77281 commit c1ff3c2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dbos/dbos.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func processConfig(inputConfig *Config) (*Config, error) {
5454

5555
// Load defaults
5656
if dbosConfig.Logger == nil {
57-
dbosConfig.Logger = slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{Level: slog.LevelDebug}))
57+
dbosConfig.Logger = slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{Level: slog.LevelInfo}))
5858
}
5959

6060
return dbosConfig, nil

dbos/recovery.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ func recoverPendingWorkflows(ctx *dbosContext, executorIDs []string) ([]Workflow
1111
status: []WorkflowStatusType{WorkflowStatusPending},
1212
executorIDs: executorIDs,
1313
applicationVersion: ctx.applicationVersion,
14+
loadInput: true,
1415
})
1516
if err != nil {
1617
return nil, err

0 commit comments

Comments
 (0)