Skip to content

Commit 4b3ed59

Browse files
Fix workflow error
1 parent 70a9d9c commit 4b3ed59

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Context.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "Mqtt/IMqttMessagingProtocol.h"
2424
#include "Mqtt/IMqttProcessor.h"
2525
#include "Utils/IBundleChecker.h"
26+
#include "Defaults.h"
2627

2728
#include <memory>
2829

@@ -55,10 +56,10 @@ namespace sua {
5556
std::shared_ptr<IMqttMessagingProtocol> messagingProtocol;
5657
std::shared_ptr<IMqttProcessor> mqttProcessor;
5758
std::shared_ptr<IBundleChecker> bundleChecker;
58-
std::string updatesDirectory;
59+
std::string updatesDirectory = SUA_DEFAULT_TEMP_DIRECTORY;
5960
std::string tempFileName = "/temp_file";
60-
std::string caDirectory;
61-
std::string caFilepath;
61+
std::string caDirectory = SUA_DEFAULT_CA_DIRECTORY;
62+
std::string caFilepath = SUA_DEFAULT_CA_FILEPATH;
6263
bool downloadMode = true;
6364
bool fallbackMode = false;
6465

0 commit comments

Comments
 (0)