How to recreate a thread with the same name after closing it

I create a thread with the following method:
Thread = FRunnableThread::Create(this, TEXT(“Client_Thread”), 0, TPri_BelowNormal);
then i close the thread with the following method:
Thread->Kill();
delete Thread;
but when i create another thread using the first method,the following warning appears.
LogStats:Warning: MetaData mismatch. Did you assign a stat to two groups? New //STATGROUP_Threads//Client_Thread///Thread_1cfc_0///####STATCAT_Advanced#### old //STATGROUP_Threads//Client_Thread///Thread_b70_0///####STATCAT_Advanced####
Tcp_Client_Plugin_Log:Warning: Connecting

is there any solution except for changing the thread name?
Thanks a lot!