Skip to content

Commit

Permalink
Code clean. Fix misspell
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy.safronov committed Jul 26, 2022
1 parent c305ca5 commit 4fedfb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DOCKERFILE = "Dockerfile"
PROJECT_PATH = $(shell pwd)

define docker-build =
docker build -t ${IMAGE_NAME}:${VERSION} -f ${DOCKERFILE} .
docker build -t ${IMAGE_NAME}:${VERSION} -f dev/${DOCKERFILE} .
docker run --rm \
--name toolbox-ocppexample-tests \
-v ${PROJECT_PATH}:/go/ocppexample \
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func wsChargerHandler (w http.ResponseWriter, r *http.Request, ps httprouter.Par
// Get Charger from the Configs
chargerObj, err := ServerConfigs.GetChargerObj(chargerName)
if err != nil {
// There is no charger with specifed name in the configs
// There is no charger with specified name in the configs
http.Error(w, "Not allowed to connect for specified charger", http.StatusBadRequest)
log.Error_Log("Not allowed to connect for specified charger '%v' with error '%v'", chargerName, err)
return
Expand Down

0 comments on commit 4fedfb3

Please sign in to comment.