Skip to content

Commit

Permalink
Merge pull request #315 from tom-binary/bugfix/subscription_error_on_…
Browse files Browse the repository at this point in the history
…exit

bugfix/subscription_error_on_exit
  • Loading branch information
tom-binary authored May 29, 2024
2 parents 6c336a6 + 08551f9 commit bbb02d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Myriad/RPC/Client/Implementation/Redis.pm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async method start() {
} catch ($e) {
$log->warnf('failed to parse rpc response due %s', $e);
}
})->completed;
});

$started->done('started');
$log->tracef('Started RPC client subscription on %s', $whoami);
Expand Down Expand Up @@ -109,7 +109,7 @@ async method call_rpc($service, $method, %args) {
}

async method stop {
$subscription->done();
$subscription->finish
}

method next_id {
Expand Down

0 comments on commit bbb02d1

Please sign in to comment.