File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,9 @@ struct RootInterface : public RootGrpcInterface {
179179 */
180180 virtual bool onDone () = 0;
181181
182+ // Call when the for logging not associated with a stream lifecycle (e.g. logging only plugin).
183+ virtual void onLog () = 0;
184+
182185 /* *
183186 * Call when no further stream calls will occur. This will cause the corresponding Context in the
184187 * VM to be deleted.
Original file line number Diff line number Diff line change @@ -472,7 +472,7 @@ void NullPlugin::onLog(uint64_t context_id) {
472472 registry_->proxy_on_log_ (context_id);
473473 return ;
474474 }
475- getContext (context_id)->onLog ();
475+ getContextBase (context_id)->onLog ();
476476}
477477
478478uint64_t NullPlugin::onDone (uint64_t context_id) {
You can’t perform that action at this time.
0 commit comments