IMPORTANT: We are moving to Discord (link: https://discord.gg/TSEcDRP)! Support @Gitter is no longer guaranteed
icebob on master
fix: disableHeartbeatChecks sho… same opts issue with "disableOf… Merge pull request #858 from ke… (compare)
icebob on master
Wrap decryption code in a try b… log the error if decryption fai… Merge pull request #853 from ci… (compare)
Hi all,
I would like to know what configurations are required to make may services run each on separate nodes.
My app is a RESTful webservice with gateway.service.js as well as 6 other services which each serve an API endpoint.
How can I canfigure moleculer such that each of my services runs on a different node.
M other question is how to condigure my Dockerfile such that each of my services run on a separate container.
Is this possible?,
is this a good idea?
actions : {
getOne: {
params: {
$$strict: true,
id: { type: "string", optional: true },
name: { type: "string", optional: true },
},
handler: this.getOne
}
}
Hi, i need to populate field
i used like this
settings: {
populates:{
"categories": "categories.get"
}
}
this.adapter.find({
query : {
status: 2,
_id: project_id
},
populate : ['categories']
});
but it doesne't work
i need data like this
[
{
"status": 2,
"name": "Test Name"
"categories": [
{
"_id": 1,
"name": "Collectibles"
},
{
"_id": 34,
"name": "watch"
}
]
}
]
instead it returns like this
[
{
"status": 2,
"name": "Test Name"
"categories": [1,34]
}
]
Hi guys,
I am trying to authenticate some routes and not others.
anyone has an idea?
/api/users
/api/posts
chat
, notifications
and users
. Any idea? Thanks!