Hot reloads don't pause background tasks

I’ve created a custom background task to start a single job thread (which will loop indefinitely), this thread will not be paused after sanic hot reload when I change the code, and I want to create a custom function for developers to define what needs to be done before hot reload

Chinese:我自定义了一个后台任务,用来启动一个单独作业的线程(这个线程会进行无限循环),当我更改代码,sanic热重载后,这个线程不会被暂停,我希望能自定义一个函数,用于开发者自定义在热重载前需要执行的操作

async def Start():
    overview_Thread = threading.Thread(target=overview_Thread_Main, args=(JSON))
    overview_Thread.start()

app.add_task(Start())

Where and in what context are you starting that task?