mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-14 17:40:26 -05:00
Feature/jenkins warnings (#538)
* Remove warnings from Jenkins * Improve Jenkins behavior
This commit is contained in:
@@ -127,9 +127,9 @@ void HttpSynchronization::start() {
|
||||
"&" + QueryKeyFileVersion + "=" + std::to_string(_version) +
|
||||
"&" + QueryKeyApplicationVersion + "=" + std::to_string(ApplicationVersion);
|
||||
|
||||
_syncThread = std::thread([this](const std::string& query) {
|
||||
_syncThread = std::thread([this](const std::string& q) {
|
||||
for (const std::string& url : _synchronizationRepositories) {
|
||||
if (trySyncFromUrl(url + query)) {
|
||||
if (trySyncFromUrl(url + q)) {
|
||||
createSyncFile();
|
||||
resolve();
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user