mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-24 03:05:17 +01:00
Use our own thread
This commit is contained in:
parent
03bfe80ee2
commit
8b48e936fb
@ -788,7 +788,8 @@ public class AuthMe extends JavaPlugin {
|
||||
|
||||
if (Settings.getDataSource == DataSource.DataSourceType.FILE) {
|
||||
Converter converter = new ForceFlatToSqlite(database, this);
|
||||
Bukkit.getScheduler().runTaskAsynchronously(this, converter);
|
||||
Thread t = new Thread(converter);
|
||||
t.start();
|
||||
ConsoleLogger.showError("FlatFile backend as been detected and is now deprecated, next time server startup, it will be changed to SQLite... Conversion will be started Asynchronously, it will not drop down your performances !");
|
||||
ConsoleLogger.showError("If you want to keep FlatFile, set file again into config at backend, but this message and this change will appear again at the next restart");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user