This commit is contained in:
2023-08-22 09:39:00 +08:00
parent 1ee5b734ce
commit a534de00bd
2 changed files with 2 additions and 2 deletions

View File

@@ -149,7 +149,7 @@ func PostTraceTaskToNF(w http.ResponseWriter, r *http.Request) {
succNE := fmt.Sprintf("%s.%s", neInfo.NeType, neInfo.NeId)
traceTask.SuccNEs = append(traceTask.SuccNEs, succNE)
default:
log.Warn("Post return code:%d, message:%s", resp.StatusCode(), string(resp.Body()))
log.Warnf("Post return code:%d, message:%s", resp.StatusCode(), string(resp.Body()))
failNE := fmt.Sprintf("%s.%s", neInfo.NeType, neInfo.NeId)
traceTask.FailNEs = append(traceTask.FailNEs, failNE)
}

View File

@@ -25,7 +25,7 @@ func main() {
SerialNumber: big.NewInt(2023),
Subject: pkix.Name{CommonName: "Root CA"},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(10, 0, 0), // 有效期为10年
NotAfter: time.Now().AddDate(0, 0, 1), // 有效期为10年
KeyUsage: x509.KeyUsageCertSign | x509.KeyUsageCRLSign,
BasicConstraintsValid: true,
IsCA: true,