disabled Connectors now fail in a known way instead of breaking DeliveryChain
This commit is contained in:
parent
e619c7d330
commit
fdf3c3bf64
1 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,10 @@ class ConnectorRegistry {
|
|||
connector.Hook(this)
|
||||
}
|
||||
transmit(name, msg, params) {
|
||||
if (!this.Connectors[ name ]) throw "not registred"
|
||||
if (!this.Connectors[ name ]) {
|
||||
setTimeout(this.reportFail.bind(this), 1e3, msg, name)
|
||||
return false
|
||||
}
|
||||
//md5(JSON.stringify([name, ...params])),
|
||||
this.Connectors[ name ].transmitMessage(msg, params)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue