Posts

Showing posts from January 16, 2019

Tony Award for Best Actress in a Musical

Tony Award for Best Actress in a Musical Awarded for Best Performance by an Actress in a Lead Role in a Musical Location New York City Presented by American Theatre Wing, The Broadway League Currently held by Katrina Lenk for The Band's Visit (2018) Website TonyAwards.com The Tony Award for Best Performance by a Leading Actress in a Musical is awarded to the best actress in a musical, whether a new production or a revival. The award has been given since 1948, but the nominees who did not win have only been publicly announced since 1956. [1] Contents 1 History 2 Winners and nominees 2.1 1940s 2.2 1950s 2.3 1960s 2.4 1970s 2.5 1980s 2.6 1990s 2.7 2000s 2.8 2010s 3 Multiple wins 4 Multiple nominations 5 Multiple character wins 6 Multiple character nominations 7 Musicals with multiple lead nominations 8 References 9 External links History The award was not presented in

Setting up webserver to test webhooks api via Jenkins

Image
0 I am executing a bunch of postman APIs using Newman command on Jenkins. One of those APIs requires a webhook URL in the body:- { "webhook_url": "http://localhost:8000" } which I want to use later on to retrieve the content posted on it. I tested it on my local machine by creating a local web server using nodeJs which acted as a webhook URL and I could verify/see the content getting echoed on that web server. But I need help on how to achieve this same thing via Jenkins. In short, I want to:- Create and Start a web server via Jenkins which I can use as webhook_url Execute collection of postman APIs and verify content posted on webhook_url Kill web server node.js jenkins webserver postman