Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joatin committed Jan 9, 2025
1 parent cb2f5dd commit f116f65
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions charts/ocpp-csms-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.36
version: 0.1.37

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.1.11"
appVersion: "v0.1.12"

dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion ocpp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2021'
name = "ocpp"
version = "0.1.11"
version = "0.1.12"
publish = false

[dependencies]
Expand Down
4 changes: 1 addition & 3 deletions ocpp/src/charger/charger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ impl Charger {
if let Some(ChargerModel::Easee(_)) = self.model() {
return match &self.easee_master_password {
Some(master_password) => {
dbg!(&master_password);
dbg!(&password);
if password.as_ref() == Some(master_password) {
self.authenticated = true;
Ok(())
Expand Down Expand Up @@ -241,7 +239,7 @@ impl Charger {
.ocpp1_6()
.send_remote_start_transaction(RemoteStartTransactionRequest {
connector_id: Some(outlet.ocpp_connector_id),
id_tag: "".to_string(),
id_tag: "central".to_string(),
charging_profile: None,
})
.await
Expand Down

0 comments on commit f116f65

Please sign in to comment.