Skip to content

Commit

Permalink
Merge branch 'COVESA:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
UlfBj authored Apr 5, 2024
2 parents 0be4352 + 3704a2e commit 08e00d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.agtserver
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

ARG GO_VERSION=1.22.1
ARG VSSTREE_NAME="vss_vissv2.binary"
ARG BUILD_IMAGE="golang:latest"
ARG BUILD_IMAGE="golang:1.22.1-bookworm"
ARG RUNTIME_IMAGE="debian:bullseye-slim"

#----------------------Builder-----------------------
Expand Down
10 changes: 5 additions & 5 deletions server/vissv2server/atServer/ecfSim/ecfSimulator.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ package main

import (
"encoding/json"
"flag"
"fmt"
"time"
"strings"
"github.com/gorilla/websocket"
"net/http"
"net/url"
"flag"
"github.com/gorilla/websocket"
"strings"
"time"
)

var muxServer = []*http.ServeMux{
Expand Down Expand Up @@ -94,7 +94,7 @@ func ecfReceiver(conn *websocket.Conn, ecfReceiveChan chan string) {
}

func dispatchResponse(request string, sendChan chan string) {
fmt.Printf("dispatchResponse: request=%s\n", request)
fmt.Printf("dispatchResponse: request=%s\n", request)
var requestMap map[string]interface{}
errorIndex := statusIndex
err := json.Unmarshal([]byte(request), &requestMap)
Expand Down

0 comments on commit 08e00d3

Please sign in to comment.