[DiscordArchive] I can do a complete wipe if you like? And start again, with the patch in place?
[DiscordArchive] I can do a complete wipe if you like? And start again, with the patch in place?
Archived author: Michael Crilly • Posted: 2022-11-04T12:44:32.600000+00:00
Original source
I can do a complete wipe if you like? And start again, with the patch in place?
Archived author: Michael Crilly • Posted: 2022-11-04T12:45:04.117000+00:00
Original source
As in: `docker compose down --rmi all -v --remove-orphans`
Archived author: Yehonal • Posted: 2022-11-04T12:46:30.361000+00:00
Original source
you can try that indeed
Archived author: Michael Crilly • Posted: 2022-11-04T12:47:12.482000+00:00
Original source
Doing a complete rebuild now: ```docker compose down --rmi all -v --remove-orphans
docker compose --profile app up```
Archived author: Michael Crilly • Posted: 2022-11-04T12:47:46.677000+00:00
Original source
No luck, sorry.
tring const& host, std:
tring const& user,
tring const& password, std:
tring const& port_or_socket, std:
tring const& database, std:
tring const& ssl, Path const& path)
tring configTempDir = sConfigMgr->GetOption<std:
tring>("TempDir", "");
tring confFileName = "mysql_ac.conf";Archived author: Michael Crilly • Posted: 2022-11-04T12:49:39.678000+00:00
Original source
This is the C++ code that generates that file: ```template<class T>
void DBUpdater<T>::ApplyFile(DatabaseWorkerPool<T>& pool, std:
tring const& host, std:
tring const& user,
std:
tring const& password, std:
tring const& port_or_socket, std:
tring const& database, std:
tring const& ssl, Path const& path)
{
std:
tring configTempDir = sConfigMgr->GetOption<std:
tring>("TempDir", "");
auto tempDir = configTempDir.empty() ? std::filesystem::temp_directory_path().string() : configTempDir;
tempDir = Acore::String::AddSuffixIfNotExists(tempDir, std::filesystem::path::preferred_separator);
std:
tring confFileName = "mysql_ac.conf";
std::ofstream outfile (tempDir + confFileName);```
Archived author: Michael Crilly • Posted: 2022-11-04T12:49:59.203000+00:00
Original source
`src\server\database\Updater\DBUpdater.cpp` Lines `441` through to `453`
Archived author: Sky • Posted: 2022-11-04T12:52:29.581000+00:00
Original source
that's weird, I'm not even using this PR and got no problem at all
Archived author: Michael Crilly • Posted: 2022-11-04T12:53:33.286000+00:00
Original source
I've was originally working with the `master` branch as-is.