Skip to content

Commit 2441130

Browse files
authored
Fix #87 -- Add HTTP message sequence diagram (#88)
1 parent 33612b0 commit 2441130

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
http-message-flow.svg: http-message-flow.sequence
2+
diagrams sequence http-message-flow.sequence http-message-flow.svg

README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ Features
1717
- easy integration
1818
- works just like the built-in
1919

20+
For the Nerds
21+
-------------
22+
23+
.. image:: http-message-flow.svg
24+
2025
Installation
2126
------------
2227

http-message-flow.sequence

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Client->AWS S3:POST large file
2+
AWS S3->Client:RESPONSE AWS S3 key
3+
Client->S3FileMiddleware:POST AWS S3 key
4+
S3FileMiddleware->AWS S3:GET AWS S3 key
5+
AWS S3->S3FileMiddleware:RESPONSE large file
6+
S3FileMiddleware->DjangoView:request incl. large file
7+
DjangoView->Client:RESPONSE success
8+

http-message-flow.svg

+1
Loading

0 commit comments

Comments
 (0)