Skip to content

Commit

Permalink
chore: ran dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Dec 4, 2023
1 parent 65156a6 commit b1b0366
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,16 @@ abstract class SshrvdChannel<T> with AsyncInitialization, AtClientBindings {
..sharedBy = params.clientAtSign // shared by us
..sharedWith = host // shared with the sshrvd host
..metadata = (Metadata()
// as we are sending a notification to the sshrvd namespace,
// we don't want to append our namespace
// as we are sending a notification to the sshrvd namespace,
// we don't want to append our namespace
..namespaceAware = false
..ttl = 10000);
logger.info('Sending notification to sshrvd: $ourSshrvdIdKey');
await notify(ourSshrvdIdKey, sessionId);

int counter = 0;
while (sshrvdAck == SshrvdAck.notAcknowledged) {
if ((counter+1) % 20 == 0) {
if ((counter + 1) % 20 == 0) {
logger.info('Waiting for sshrvd response: $counter');
}
await Future.delayed(Duration(milliseconds: 100));
Expand Down

0 comments on commit b1b0366

Please sign in to comment.