Sending events to the dev version of a ruleset via HTTP
Posted
by
Steve Nay
on Stack Overflow
See other posts from Stack Overflow
or by Steve Nay
Published on 2010-12-30T05:45:07Z
Indexed on
2010/12/30
5:54 UTC
Read the original article
Hit count: 266
krl
I've been writing an endpoint that sends events to a KRL ruleset via HTTP GET (based on the documentation here), in this format:
http://cs.kobj.net/blue/event/{domain}/{eventname}/{appid}
That works great when the version of the app I want to test is the same one that's deployed. I don't always want to deploy before testing it, though. Using the stated format for calling the dev version doesn't work. It still calls the deployed version of my ruleset:
http://cs.kobj.net/blue/event/{domain}/{eventname}/{appid}:kynetx_app_version=dev
What am I doing wrong?
© Stack Overflow or respective owner