Skip to content

Commit

Permalink
Fix DB filename argument for ephemeral server (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
iand675 authored Jan 8, 2025
1 parent bba9fe1 commit f70d5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/ephemeral_server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl TemporalDevServerConfig {
"frontend.enableUpdateWorkflowExecutionAsyncAccepted=true".to_owned(),
];
if let Some(db_filename) = &self.db_filename {
args.push("--filename".to_owned());
args.push("--db-filename".to_owned());
args.push(db_filename.clone());
}
if let Some(ui_port) = self.ui_port {
Expand Down

0 comments on commit f70d5d1

Please sign in to comment.