This commit is contained in:
Marsway 2026-01-13 17:01:55 +08:00
parent 8e70342ff2
commit f1a10bce1b
1 changed files with 3 additions and 0 deletions

View File

@ -11,4 +11,7 @@ class testJob(BaseJob):
job_id = "test.job" job_id = "test.job"
def run(self, params: dict[str, Any], secrets: dict[str, Any]) -> dict[str, Any]: def run(self, params: dict[str, Any], secrets: dict[str, Any]) -> dict[str, Any]:
message = str(params.get("message") or "").strip()
logger.info("Message says:", message)
return {"message": "hello, world"} return {"message": "hello, world"}