Skip to content

Commit

Permalink
fix: do not overwrite base config attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jan 1, 2021
1 parent 004a0cd commit d4b8ee0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint:docs": "documentation lint ./src/service-smtp.mjs"
},
"dependencies": {
"@kronos-integration/service": "^10.3.8",
"@kronos-integration/service": "^10.3.10",
"model-attributes": "^4.1.8",
"smtp-client": "^0.3.3"
},
Expand Down
4 changes: 2 additions & 2 deletions src/service-smtp.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export class ServiceSMTP extends Service {

static get configurationAttributes() {
return mergeAttributes(
Service.configurationAttributes,
createAttributes({
host: {
needsRestart: true,
Expand All @@ -42,7 +41,8 @@ export class ServiceSMTP extends Service {
}
}
}
})
}),
Service.configurationAttributes
);
}

Expand Down

0 comments on commit d4b8ee0

Please sign in to comment.