2017-05-22 2 views
0

Nach meiner Parse-Armaturenbrett Aktualisierung verloren i die "Protokolle der Spalte" wie Sie sehen können: Log missingPARST DASHBOARD derzeit keine Wolke Protokolle sehen, nachdem Armaturenbrett Upgrade

ich mein Parse-Armaturenbrett und meinen Parse-Server nur aktualisiert:

Dashboard:?.?.? (Package.json https://pastebin.com/KRFaxJha)

Parse-Server: 2.4.0

node: 7.10.0

Dies ist meine Parse-Armaturenbrett-Konfigurationsdatei:

{ 
    "apps": [ 
    { 
      "appId": "APP_ID", 
      "masterKey": "MASTER_KEY", 
      "restKey": "REST_KEY", 
      "serverURL": "http://WWW_WEBSITE:8081/parse", 
      "appName":"APP_NAME" 
     } 
    ], 
"users": [ 
     { 
      "user": "ADMIN", 
      "pass": "ADMINXXXXXXX" 
     } 
] 
} 

Dies ist meine Wolke Codetestfunktion:

Parse.Cloud.define("hello", function(request, response) { 
    response.success("Hello world!"); 
}); 

Wenn ich es mit einer Locke rufe, habe ich:

curl -X POST -H "X-Parse-Application-Id: APP_ID" -H "X-Parse-REST-API-Key: REST_KEY" -H "Content-Type: application/json" -d '{ }' http://WWW_WEBSITE:8081/parse/functions/hello 

{"result":"Hello world!"} 

das Ergebnis korrekt ist, und auf dem Parse-Server ich habe die Spur:

verbose: REQUEST for [POST] /parse/functions/hello: {} method=POST, url=/parse/functions/hello, user-agent=curl/7.29.0, host=WWW_WEBSITE:8081, accept=*/*, x-parse-application-id=APPID, x-parse-rest-api-key=REST_KEY, content-type=application/json, content-length=3, 
info: Ran cloud function hello for user undefined with: 
    Input: {} 
    Result: "Hello world!" functionName=hello, , user=undefined 
verbose: RESPONSE from [POST] /parse/functions/hello: { 
    "response": { 
    "result": "Hello world!" 
    } 
} result=Hello world! 

ich dieses Thema gesehen haben: https://github.com/parse-community/parse-dashboard/issues/281 und ich habe versucht die ausführliche Export-Variablen auf meiner Parse einstellen -Server und Armaturenbrett

ich glaube, ich habe einige Konfiguration vermissen, aber ich kann Danke, die man nicht finden

eine Menge,

Canna

Antwort

0

Bad Armaturenbrett Version Ich weiß nicht, warum:

npm -g Parse-Armaturenbrett befestigen Sie es installieren und installiert die gute Armaturenbrett Version

Verwandte Themen