Skip to content

Commit

Permalink
Merge pull request #90 from DMTF/Event-Service-Debug
Browse files Browse the repository at this point in the history
Corrected passing of the event_types argument from rf_event_service.py when creating an event subscription
  • Loading branch information
mraineri authored Sep 23, 2022
2 parents 1fe006c + d614aab commit 026c999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rf_event_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
try:
if args.command == "subscribe":
response = redfish_utilities.create_event_subscription( redfish_obj, args.destination, format = args.format, client_context = args.context,
expand = args.expand, resource_types = args.resourcetypes, registries = args.registries )
expand = args.expand, resource_types = args.resourcetypes, registries = args.registries, event_types = args.eventtypes )
print( "Created subscription '{}'".format( response.getheader( "Location" ) ) )
elif args.command == "unsubscribe":
print( "Deleting subscription '{}'".format( args.id ) )
Expand Down

0 comments on commit 026c999

Please sign in to comment.