Skip to content

Commit

Permalink
Update start.py
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliocimino committed Jun 16, 2022
1 parent 98a9f9c commit 3fc5f55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Test/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

event = event.flatMap(lambda x: x.entities).map(lambda x: x.attrs['price'].value)
response = event.map(lambda x : replier.UnstructuredReplyToBroker('{ "value" :' + str(20) +' }'))
response2 = event.map(lambda x: replier.SemistructuredReplyToBroker(20, '{"value" : %%TOREPLACE%% }'))
response3 = event.map(lambda x : replier.ReplyToBroker(20))
response2 = event.map(lambda x: replier.SemistructuredReplyToBroker("20", '{"value" : %%TOREPLACE%% }'))
response3 = event.map(lambda x : replier.ReplyToBroker("20"))
event.pprint()
response.pprint()
response2.pprint()
Expand Down

0 comments on commit 3fc5f55

Please sign in to comment.