Skip to content

Merge Conflicts for PR 'Error logging and examples' #284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 38 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
eed16d1
reorg
davidbarsky Jul 17, 2020
64cd7df
Replace `genawaiter` with `async-stream` (#240)
LucioFranco Jul 17, 2020
1163682
don't depend on serde_derive directly
davidbarsky Jul 17, 2020
d4a9376
Add Cargo.lock to gitignore; whoops.
davidbarsky Jul 17, 2020
c0d3418
Cleanup docs; handle panics in lambda functions correctly.
davidbarsky Jul 19, 2020
e2b22e3
Create a reusable runtime struct + builder
davidbarsky Jul 19, 2020
a8ef3c3
Log handler errors in runtime. Issue #241
Jul 22, 2020
afb2b79
Added basic.rs example, comments to other examples
Jul 22, 2020
64fcfc2
Tidied up examples readme.
Jul 22, 2020
96a90af
Fixed headers in examples readme.
Jul 22, 2020
5d07f3f
Formatting fix in error-handling.rs.
rimutaka Jul 22, 2020
82d2351
Fixed comment in lib.rs
rimutaka Jul 22, 2020
5f63aa9
Corrected handler_fn interface misconception in basic.rs
rimutaka Jul 23, 2020
64d54f8
Upper-cased and edited examples/readme.md
rimutaka Jul 23, 2020
878788c
Add log and tracing examples; fix `tracing` dependency features.
davidbarsky Jul 23, 2020
f03d2b5
disable time on `tracing_subscriber`
davidbarsky Jul 23, 2020
6d369a5
Removed unused refs from basic.rs
rimutaka Jul 23, 2020
ad25ed7
Added error handling for #241, interim, broken.
rimutaka Jul 23, 2020
59227cd
Added err logging to lib.rs, consolidated examples
rimutaka Jul 25, 2020
e40ea17
Log panic as Debug+Display, improved examples
rimutaka Jul 25, 2020
e2ae1e5
client.rs formatting fix
rimutaka Jul 25, 2020
7e58282
Fixed "Process exited" error in lib.rs.
rimutaka Jul 26, 2020
7d99555
Added some tracing!() to lib.rs.
rimutaka Jul 26, 2020
166d638
Enforced Send+Sync for http Handler impl.
rimutaka Aug 17, 2020
186b4db
Added docs and missing _vars to reduce warnings
rimutaka Aug 18, 2020
0691662
Merge branch 'master' of https://github.com/awslabs/aws-lambda-rust-r…
rimutaka Aug 18, 2020
6743dd4
Merge remote-tracking branch 'base/master'
rimutaka Aug 18, 2020
17c2a29
Merge branch 'master' into davidbarsky/update-readme
rimutaka Aug 18, 2020
8e84585
Removed unnecessary + Sync on handler's future
rimutaka Aug 19, 2020
12a0ef8
Merged 'base/master' into 'rimutaka/master' to catch up on new commits.
rimutaka Sep 22, 2020
031eda9
Merged 'rimutaka/davidbarsky/update-readme' (PR awslabs#244) into `ri…
rimutaka Sep 22, 2020
4a2cbb5
Merge branch 'master' of https://github.com/rimutaka/aws-lambda-rust-…
rimutaka Sep 22, 2020
9c81ee1
Merge branch 'master' of https://github.com/rimutaka/aws-lambda-rust-…
bahildebrand Jan 30, 2021
39e0cd1
All tests passing
bahildebrand Jan 30, 2021
222f915
Remove deprecated simple_logger calls
bahildebrand Jan 30, 2021
407cb33
Merge remote-tracking branch 'upstream/master' into rimutaka-master
bahildebrand Feb 3, 2021
aa76337
Remove Cargo.lock
bahildebrand Feb 3, 2021
55caad8
cargo fmt changes
bahildebrand Feb 3, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/target
/.cargo
lambda-runtime/libtest.rmeta
Cargo.lock

# Built AWS Lambda zipfile
lambda.zip
Expand Down
Loading