Skip to content

Commit

Permalink
Fix workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrChaika committed Jul 5, 2023
1 parent 70a9d9c commit 4b3ed59
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Context.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "Mqtt/IMqttMessagingProtocol.h"
#include "Mqtt/IMqttProcessor.h"
#include "Utils/IBundleChecker.h"
#include "Defaults.h"

#include <memory>

Expand Down Expand Up @@ -55,10 +56,10 @@ namespace sua {
std::shared_ptr<IMqttMessagingProtocol> messagingProtocol;
std::shared_ptr<IMqttProcessor> mqttProcessor;
std::shared_ptr<IBundleChecker> bundleChecker;
std::string updatesDirectory;
std::string updatesDirectory = SUA_DEFAULT_TEMP_DIRECTORY;
std::string tempFileName = "/temp_file";
std::string caDirectory;
std::string caFilepath;
std::string caDirectory = SUA_DEFAULT_CA_DIRECTORY;
std::string caFilepath = SUA_DEFAULT_CA_FILEPATH;
bool downloadMode = true;
bool fallbackMode = false;

Expand Down

0 comments on commit 4b3ed59

Please sign in to comment.