Created
January 4, 2012 19:26
-
-
Save timuruski/fddfdf9ab0772807e1a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Operational | |
| { | |
| "operational": true, | |
| "message": null | |
| } | |
| // Failing | |
| { | |
| "operational": false, | |
| "message": "We'll be right back." | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MESSAGE = "We'll be right back" | |
| HEADERS = { 'Content-Type'=>'application/json' } | |
| BODY = <<-EOS | |
| { "operational": #{MESSAGE.empty?}, | |
| "message": "#{MESSAGE}" } | |
| EOS | |
| run lambda { |env| [200, HEADERS, [BODY]] } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment