Skip to content

Commit 9b641d7

Browse files
authored
Custom slot suppliers (#343)
Fixes #225
1 parent 1bcac1a commit 9b641d7

File tree

15 files changed

+1358
-260
lines changed

15 files changed

+1358
-260
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,8 +1246,8 @@ when an activity class is referenced in a workflow before it has been explicitly
12461246
> Temporalio::Workflow::Unsafe.illegal_call_tracing_disabled block.
12471247
12481248
This comes from `bootsnap` via `zeitwork` because it is lazily loading a class/module at workflow runtime. It is not
1249-
good to lazily load code durnig a workflow run because it can be side effecting. Workflows and the classes they
1250-
reference should not be eagerly loaded.
1249+
good to lazily load code during a workflow run because it can be side effecting. Workflows and the classes they
1250+
reference should be eagerly loaded.
12511251

12521252
To resolve this, either always eagerly load (e.g. `config.eager_load = true`) or explicitly `require` what is used by a
12531253
workflow at the top of the file.

0 commit comments

Comments
 (0)