mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? Remove 1 day retention for standalone activities ## Why? No longer needed as we have tiered storage in place now ## How did you test it? - [X] built - [X] run locally and tested manually - [X] covered by existing tests - [ ] added new unit test(s) - [ ] added new functional test(s)
12 lines
249 B
Go
12 lines
249 B
Go
package chasm
|
|
|
|
const (
|
|
WorkflowLibraryName = "workflow"
|
|
WorkflowComponentName = "workflow"
|
|
)
|
|
|
|
var (
|
|
WorkflowArchetype = FullyQualifiedName(WorkflowLibraryName, WorkflowComponentName)
|
|
WorkflowArchetypeID = GenerateTypeID(WorkflowArchetype)
|
|
)
|