Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/everest/ocpp/lib/ocpp/v16/charge_point_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const auto V2G_CERTIFICATE_TIMER_INTERVAL = std::chrono::hours(12);
const auto OCSP_REQUEST_TIMER_INTERVAL = std::chrono::hours(12);
const auto INITIAL_CERTIFICATE_REQUESTS_DELAY = std::chrono::seconds(60);
const auto WEBSOCKET_INIT_DELAY = std::chrono::seconds(2);
const auto DEFAULT_MESSAGE_QUEUE_SIZE_THRESHOLD = 2E5;
const auto DEFAULT_MESSAGE_QUEUE_SIZE_THRESHOLD = 1000;
const auto DEFAULT_BOOT_NOTIFICATION_INTERVAL_S = 60; // fallback interval if BootNotification returns interval of 0.
const auto DEFAULT_PRICE_NUMBER_OF_DECIMALS = 3;
const auto DEFAULT_WAIT_FOR_SET_USER_PRICE_TIMEOUT_MS = 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/everest/ocpp/lib/ocpp/v2/charge_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ using namespace std::chrono_literals;
namespace ocpp {
namespace v2 {

const auto DEFAULT_MESSAGE_QUEUE_SIZE_THRESHOLD = 2E5;
const auto DEFAULT_MESSAGE_QUEUE_SIZE_THRESHOLD = 1000;

ChargePoint::ChargePoint(const std::map<std::int32_t, std::int32_t>& evse_connector_structure,
std::shared_ptr<DeviceModel> device_model, std::shared_ptr<DatabaseHandler> database_handler,
Expand Down
Loading