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
[InjectDelayPolicy] | |
public async Task<APIGatewayProxyResponse> FunctionHandler(APIGatewayProxyRequest apigProxyEvent, | |
ILambdaContext context) | |
{ | |
var location = await GetCallingIP(); | |
var body = new Dictionary<string, string> | |
{ | |
{"message", "hello world"}, | |
{"location", location} | |
}; |
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
public async Task<APIGatewayProxyResponse> FunctionHandlerException(APIGatewayProxyRequest apigProxyEvent, ILambdaContext context) | |
{ | |
return await new ChaosWrap<InjectException>().Execute(async () => | |
{ | |
var location = await GetCallingIP(); | |
var body = new Dictionary<string, string> | |
{ | |
{"message", "hello world"}, | |
{"location", location} | |
}; |
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
<div class="container"> | |
<h1>MYOB Status Page Concept</h1> | |
<div class="accordion"> | |
<dl> | |
<dt><a class="accordionTitle" href="#">MYOB Advanced</a></dt> | |
<dd class="accordionItem accordionItemCollapsed"> | |
<div class="accordionStatusItem itemN"><p>SYSTEM STATUS: NORMAL</p> | |
<br><p>2 days, 3 hours, 6 minutes and 11 seconds. </p></div> | |
<hr> | |
<div class="accordionStatusItem"><p>UPTIME OVERVIEW</p></div> |
OlderNewer