We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bb8f1 commit f927cb5Copy full SHA for f927cb5
models/sync.js
@@ -16,7 +16,8 @@ var syncSchema = new Schema({
16
strat: String, // Currently github (lowercase always)
17
id: String, // Some unique identifier from source
18
target: String, // Fully Qualified URL target (should be encodeURIComponent already)
19
- response: Number, // HTTP Status Code
+ response: String, // HTTP Status Code usually and sometimes text response,
20
+ // i.e. ENOTFOUND, with no associated numeric code. Usually from dep
21
message: String, // Any message crafted or static
22
created: { type: Date, expires: 60 * 60 * 24 * 30 },
23
updated: Date,
0 commit comments