Skip to content

Commit c470353

Browse files
committed
feat: removed test workflow!
1 parent 9a5c7b0 commit c470353

2 files changed

Lines changed: 0 additions & 14 deletions

File tree

registry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
)
1818
from workflows import (
1919
CommunityWebsiteWorkflow,
20-
SayHello,
2120
WebsiteIngestionSchedulerWorkflow,
2221
MediaWikiETLWorkflow,
2322
PlatformSummariesWorkflow,
@@ -26,7 +25,6 @@
2625

2726
WORKFLOWS = [
2827
CommunityWebsiteWorkflow,
29-
SayHello,
3028
WebsiteIngestionSchedulerWorkflow,
3129
MediaWikiETLWorkflow,
3230
PlatformSummariesWorkflow,

workflows.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,3 @@
2020
# Configure logging
2121
logging.basicConfig(level=logging.INFO)
2222
logger = logging.getLogger(__name__)
23-
24-
25-
# For test purposes
26-
# To be deleted in future
27-
@workflow.defn
28-
class SayHello:
29-
@workflow.run
30-
async def run(self) -> int:
31-
logger.info(f"Hello at time {workflow.now()}!")
32-
return await workflow.start_activity(
33-
say_hello, start_to_close_timeout=timedelta(seconds=5)
34-
)

0 commit comments

Comments
 (0)