Skip to content

Commit

Permalink
Changes effect type.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwils committed Mar 20, 2024
1 parent 216935c commit 82c948f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin_runner/plugin_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def HandleEvent(self, request: Event, context):
logging.info(f"Handling event: {event_name}")

yield EventResponse(
success=True, effects=[Effect(type="Log", payload=f'Handled Event: "{event_name}"')]
success=True, effects=[Effect(type=EffectType.LOG, payload=f'Handled Event: "{event_name}"')]
)

async def ReloadPlugins(self, request: ReloadPluginsRequest, context):
Expand Down

0 comments on commit 82c948f

Please sign in to comment.