Scheduled Job is not running automatically

I created a custom application in Frappe and there I registered a funtion in cron of scheduler_events in the hooks.py which has to run every minute.

now that when i migrated the job did apperead in the Scheduled Job Type and when i mannuly execute it, works perfect but it does not run automatically.

my scheduler is on for the site for which i wrote the above function.

I have searched a lot and tried every possible solutionn but I don’t know why it is not automatic.

This is my site_config.json

{
 "db_name": "",
 "db_password": "",
 "db_type": "mariadb",
 "developer_mode": 1,
 "domains": [
  {
   "domain": "",
   "ssl_certificate": "",
   "ssl_certificate_key": ""
  }
 ],
 "encryption_key": "",
 "maintenance_mode": 0,
 "scheduler_enabled": 1,
 "pause_scheduler": false
}

and the hooks.py file

scheduler_events = {
	"cron": {
		"* * * * *": [
	        "my_full_function_pathh"
		]

	}

}

@khayamkhan Did you try bench --site sitename enable-scheduler ?

Yes, I tried and scheduler is enabled for the site.

@khayamkhan is it only this function or all events ?

@bahaou I think the other ones of ERPNext does excute but I am not confirmed.
My function is working fine and there is no isssue in the function.

@khayamkhan check the Scheduled Job Log list and check if you can find other events run lately and if your event exist.

@bahaou yes, the other events are there and also the one which i excuted mannuly are also there.
I mean my function which I excuted mannualy.

@khayamkhan weird . in your scheduled job type what is says about next execution ?

@bahaou when I excute it mannually the next excection change in to the next minute, but then it remains constant unless i do it mannually.