Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ tower = { version = "0.5", features = ["util"] }
tracing = "0.1"
url = "2.5"
uuid = { version = "1.18", features = ["v4"] }
rand = "0.9.2"

[dependencies.temporalio-common]
path = "../common"
Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ pub struct WorkflowOptions {
pub search_attributes: Option<HashMap<String, Payload>>,

/// Optionally enable Eager Workflow Start, a latency optimization using local workers
/// NOTE: Experimental and incompatible with versioning with BuildIDs
/// NOTE: Experimental
pub enable_eager_workflow_start: bool,

/// Optionally set a retry policy for the workflow
Expand Down
3 changes: 1 addition & 2 deletions crates/client/src/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,8 +659,7 @@ proxier! {
} else {
temporalio_common::protos::temporal::api::enums::v1::WorkerVersioningMode::Unversioned.into()
},
});
}
}); }
slot = Some(reservation.slot);
}
None => req_mut.request_eager_execution = false
Expand Down
Loading
Loading