From 0e2e6ecc0c18238cfe0e813e8c577b879836bc22 Mon Sep 17 00:00:00 2001 From: Byeonggil Jun Date: Tue, 12 Dec 2023 07:43:29 +0900 Subject: [PATCH 1/4] Allow top-upstream federates to start their execution without grants --- src/core/federation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/federation.ts b/src/core/federation.ts index 2f1ea7b2..5b35d751 100644 --- a/src/core/federation.ts +++ b/src/core/federation.ts @@ -1929,6 +1929,7 @@ export class FederatedApp extends App { this.sendRTINextEventTag(this.util.getCurrentTag()); if ( + this.upstreamFedIDs.length == 0 || this.greatestTimeAdvanceGrant.isSimultaneousWith(this.util.getStartTag()) ) { // PTAG for the start tag is already received, call _next immediately. From f6e9bccd3eecdbfe92ae09a11c30eca0acfde308 Mon Sep 17 00:00:00 2001 From: Byeonggil Jun <78055940+byeong-gil@users.noreply.github.com> Date: Tue, 12 Dec 2023 07:46:42 +0900 Subject: [PATCH 2/4] Update lingua-franca-ref.txt --- lingua-franca-ref.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lingua-franca-ref.txt b/lingua-franca-ref.txt index ae18e76f..ce5cd935 100644 --- a/lingua-franca-ref.txt +++ b/lingua-franca-ref.txt @@ -1 +1 @@ -reactor-ts-remove-ulog +remove-absent-messages From 051b0aa71f8c3900ee873d94e2b8e32b2bef8550 Mon Sep 17 00:00:00 2001 From: Byeonggil Jun <78055940+byeong-gil@users.noreply.github.com> Date: Tue, 12 Dec 2023 07:51:08 +0900 Subject: [PATCH 3/4] Minor fix --- src/core/federation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/federation.ts b/src/core/federation.ts index 5b35d751..3052074a 100644 --- a/src/core/federation.ts +++ b/src/core/federation.ts @@ -1929,7 +1929,7 @@ export class FederatedApp extends App { this.sendRTINextEventTag(this.util.getCurrentTag()); if ( - this.upstreamFedIDs.length == 0 || + this.upstreamFedIDs.length === 0 || this.greatestTimeAdvanceGrant.isSimultaneousWith(this.util.getStartTag()) ) { // PTAG for the start tag is already received, call _next immediately. From 618e66115311b1a1cfa85490024a15268c9465dd Mon Sep 17 00:00:00 2001 From: "Edward A. Lee" Date: Tue, 12 Dec 2023 11:22:07 -0800 Subject: [PATCH 4/4] Update lingua-franca-ref.txt to point to master Pointing to lingua-franca master to make sure tests pass so we can merge this. --- lingua-franca-ref.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lingua-franca-ref.txt b/lingua-franca-ref.txt index ce5cd935..1f7391f9 100644 --- a/lingua-franca-ref.txt +++ b/lingua-franca-ref.txt @@ -1 +1 @@ -remove-absent-messages +master