|
346 | 346 | }, |
347 | 347 | "path": "./src/map/map_with_failure_tolerance.py" |
348 | 348 | }, |
| 349 | + { |
| 350 | + "name": "Map Completion Config", |
| 351 | + "description": "Reproduces issue where map with minSuccessful loses failure count", |
| 352 | + "handler": "map_completion.handler", |
| 353 | + "integration": true, |
| 354 | + "durableConfig": { |
| 355 | + "RetentionPeriodInDays": 7, |
| 356 | + "ExecutionTimeout": 300 |
| 357 | + }, |
| 358 | + "path": "./src/map/map_completion.py" |
| 359 | + }, |
349 | 360 | { |
350 | 361 | "name": "Parallel with Max Concurrency", |
351 | 362 | "description": "Parallel operation with maxConcurrency limit", |
|
445 | 456 | }, |
446 | 457 | "path": "./src/none_results/none_results.py" |
447 | 458 | }, |
| 459 | + { |
| 460 | + "name": "Callback Success", |
| 461 | + "description": "Creating a callback ID for external systems to use", |
| 462 | + "handler": "callback_simple.handler", |
| 463 | + "integration": true, |
| 464 | + "durableConfig": { |
| 465 | + "RetentionPeriodInDays": 7, |
| 466 | + "ExecutionTimeout": 300 |
| 467 | + }, |
| 468 | + "path": "./src/callback/callback_simple.py" |
| 469 | + }, |
| 470 | + { |
| 471 | + "name": "Callback Success None", |
| 472 | + "description": "Creating a callback ID for external systems to use", |
| 473 | + "handler": "callback_simple.handler", |
| 474 | + "integration": true, |
| 475 | + "durableConfig": { |
| 476 | + "RetentionPeriodInDays": 7, |
| 477 | + "ExecutionTimeout": 300 |
| 478 | + }, |
| 479 | + "path": "./src/callback/callback_simple.py" |
| 480 | + }, |
| 481 | + { |
| 482 | + "name": "Create Callback Heartbeat", |
| 483 | + "description": "Demonstrates callback failure scenarios where the error propagates and is handled by framework", |
| 484 | + "handler": "callback_heartbeat.handler", |
| 485 | + "integration": true, |
| 486 | + "durableConfig": { |
| 487 | + "RetentionPeriodInDays": 7, |
| 488 | + "ExecutionTimeout": 300 |
| 489 | + }, |
| 490 | + "path": "./src/callback/callback_heartbeat.py" |
| 491 | + }, |
| 492 | + { |
| 493 | + "name": "Create Callback Mixed Operations", |
| 494 | + "description": "Demonstrates createCallback mixed with steps, waits, and other operations", |
| 495 | + "handler": "callback_mixed_ops.handler", |
| 496 | + "integration": true, |
| 497 | + "durableConfig": { |
| 498 | + "RetentionPeriodInDays": 7, |
| 499 | + "ExecutionTimeout": 300 |
| 500 | + }, |
| 501 | + "path": "./src/callback/callback_mixed_ops.py" |
| 502 | + }, |
| 503 | + { |
| 504 | + "name": "Create Callback Custom Serdes", |
| 505 | + "description": "Demonstrates createCallback with custom serialization/deserialization for Date objects", |
| 506 | + "handler": "callback_serdes.handler", |
| 507 | + "integration": true, |
| 508 | + "durableConfig": { |
| 509 | + "RetentionPeriodInDays": 7, |
| 510 | + "ExecutionTimeout": 300 |
| 511 | + }, |
| 512 | + "path": "./src/callback/callback_serdes.py" |
| 513 | + }, |
| 514 | + { |
| 515 | + "name": "No Replay Execution", |
| 516 | + "description": "Execution with simples steps and without replay", |
| 517 | + "handler": "no_replay_execution.handler", |
| 518 | + "integration": true, |
| 519 | + "durableConfig": { |
| 520 | + "RetentionPeriodInDays": 7, |
| 521 | + "ExecutionTimeout": 300 |
| 522 | + }, |
| 523 | + "path": "./src/no_replay_execution/no_replay_execution.py" |
| 524 | + }, |
| 525 | + { |
| 526 | + "name": "Run In Child Context With Failing Step", |
| 527 | + "description": "Demonstrates runInChildContext with a failing step followed by a successful wait", |
| 528 | + "handler": "run_in_child_context_step_failure.handler", |
| 529 | + "integration": true, |
| 530 | + "durableConfig": { |
| 531 | + "RetentionPeriodInDays": 7, |
| 532 | + "ExecutionTimeout": 300 |
| 533 | + }, |
| 534 | + "path": "./src/run_in_child_context/run_in_child_context_step_failure.py" |
| 535 | + }, |
| 536 | + { |
| 537 | + "name": "Comprehensive Operations", |
| 538 | + "description": "Complex multi-operation example demonstrating all major operations", |
| 539 | + "handler": "comprehensive_operations.handler", |
| 540 | + "integration": true, |
| 541 | + "durableConfig": { |
| 542 | + "RetentionPeriodInDays": 7, |
| 543 | + "ExecutionTimeout": 300 |
| 544 | + }, |
| 545 | + "path": "./src/comprehensive_operations/comprehensive_operations.py" |
| 546 | + }, |
448 | 547 | { |
449 | 548 | "name": "Create Callback Concurrency", |
450 | 549 | "description": "Demonstrates multiple concurrent createCallback operations using context.parallel", |
|
0 commit comments