Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Crates.io](https://img.shields.io/crates/v/duroxide.svg)](https://crates.io/crates/duroxide)
[![Documentation](https://docs.rs/duroxide/badge.svg)](https://docs.rs/duroxide)

> Notice: This is an alpha version
> **Preview:** This project is currently in preview.

A lightweight and embeddable durable execution runtime for Rust. Inspired by the [Durable Task Framework](https://github.com/Azure/durabletask) and [Temporal](https://temporal.io/).

Expand Down
2 changes: 1 addition & 1 deletion docs/proposals-impl/unregistered-orchestration-backoff.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Benefits:
- No new configuration options
- Consistent behavior with other "repeatedly failing" scenarios
- Single code path for "message keeps bouncing"
- Already tested and production-ready
- Already tested and ready to reuse

### Exponential Backoff Calculation

Expand Down
2 changes: 1 addition & 1 deletion docs/proposals/replay-engine-versioning-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,4 @@ With `replay-version-test` disabled:
- No new test code compiled
- Binary output identical to pre-change

This feature exists purely to verify the versioning mechanism works. It is not a production feature.
This feature exists purely to verify the versioning mechanism works. It is preview validation scaffolding.
2 changes: 1 addition & 1 deletion docs/versioning-best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ T+1:02 UI/API refreshes → now shows v1.0.2
/// - Added retry logic for health checks
```

5. **Test version transitions** in development before production
5. **Test version transitions** in development before rollout
- Deploy new version
- Verify old version completes its cycle
- Verify new version starts after `continue_as_new`
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ After running these examples:
1. **Read the documentation**: Check `docs/ORCHESTRATION-GUIDE.md` for the complete guide
2. **Explore the test suite**: Look at `tests/e2e_samples.rs` for more complex scenarios
3. **Build your own**: Start with a simple orchestration and gradually add complexity
4. **Join the community**: This is an experimental project - contributions welcome!
4. **Join the community**: Duroxide is currently in preview - contributions welcome!

## Troubleshooting

Expand Down
2 changes: 1 addition & 1 deletion src/provider_stress_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
//!
//! ## Interpreting Results
//!
//! **Success Rate**: Should be 100% for production-ready providers. Any failures indicate issues:
//! **Success Rate**: Should be 100% for providers under stress validation. Any failures indicate issues:
//! - Infrastructure failures: Provider bugs, lock issues, data corruption
//! - Configuration failures: Missing implementations, nondeterminism detection
//! - Application failures: Expected orchestration/activity errors (should be rare in stress tests)
Expand Down
Loading