update
This commit is contained in:
parent
8e70342ff2
commit
f1a10bce1b
|
|
@ -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"}
|
||||||
Loading…
Reference in New Issue