Fix some development issues
This commit is contained in:
+3
-1
@@ -65,4 +65,6 @@ scrutiny_test.db
|
|||||||
scrutiny.yaml
|
scrutiny.yaml
|
||||||
coverage.txt
|
coverage.txt
|
||||||
/config
|
/config
|
||||||
/influxdb
|
/influxdb
|
||||||
|
.angular
|
||||||
|
web.log
|
||||||
+4
-3
@@ -4,13 +4,14 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/analogj/scrutiny/webapp/backend/pkg/models/collector"
|
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/analogj/scrutiny/webapp/backend/pkg/models/collector"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@@ -32,7 +33,7 @@ func main() {
|
|||||||
log.Fatalf("ERROR %v", err)
|
log.Fatalf("ERROR %v", err)
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
_, err = SendPostRequest("http://localhost:9090/api/devices/register", file)
|
_, err = SendPostRequest("http://localhost:8080/api/devices/register", file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("ERROR %v", err)
|
log.Fatalf("ERROR %v", err)
|
||||||
}
|
}
|
||||||
@@ -46,7 +47,7 @@ func main() {
|
|||||||
log.Fatalf("ERROR %v", err)
|
log.Fatalf("ERROR %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = SendPostRequest(fmt.Sprintf("http://localhost:9090/api/device/%s/smart", diskId), smartDataReader)
|
_, err = SendPostRequest(fmt.Sprintf("http://localhost:8080/api/device/%s/smart", diskId), smartDataReader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("ERROR %v", err)
|
log.Fatalf("ERROR %v", err)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user