2
0
mirror of https://github.com/esiur/esiur-js.git synced 2026-03-18 15:30:38 +00:00

Added Records

This commit is contained in:
2021-06-18 17:58:37 +03:00
parent 2bf5605ef1
commit 6d2e4156cf
15 changed files with 1884 additions and 2262 deletions

View File

@@ -969,8 +969,6 @@ export default class DistributedConnection extends IStore {
trigger(trigger) {
console.log(this, trigger);
if (trigger == ResourceTrigger.Open) {
if (this.server != null)
return new AsyncReply(true);
@@ -994,9 +992,9 @@ export default class DistributedConnection extends IStore {
var host = this.instance.name.split(':');
var address = host[0];
var port = parseInt(host[1]);
var port = host.length > 1 ? parseInt(host[1]) : 10518;
if (username != null
&& password != null)