Skip to content

Commit 398a22f

Browse files
committed
More fixes
1 parent 04f722d commit 398a22f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/pull_request.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
uses: apple/swift-nio/.github/workflows/soundness.yml@main
1111
with:
1212
license_header_check_project_name: "SwiftAWSLambdaRuntime"
13+
# remove "kill killed" from the default list for now
14+
unacceptable_language_check_word_list:
15+
"blacklist whitelist slave master sane sanity insane insanity killing hang hung hanged hanging"
1316

1417
unit-tests:
1518
name: Unit tests

.licenseignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ docker/*
2323
**/docker/*
2424
**/.dockerignore
2525
**/Makefile
26-
**/*.html
26+
**/*.html
27+
.mailmap

Sources/AWSLambdaRuntime/Docs.docc/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ First, add a dependency on the event packages:
118118
}
119119
```
120120

121-
Modeling Lambda functions as Closures is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets hang, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
121+
Modeling Lambda functions as Closures is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets stuck, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
122122

123123
### Using EventLoopLambdaHandler
124124

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Next, create a `MyLambda.swift` and implement your Lambda. Note that the file ca
142142
}
143143
```
144144

145-
Modeling Lambda functions as async functions is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets hang, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
145+
Modeling Lambda functions as async functions is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets stuck, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
146146

147147
### Using EventLoopLambdaHandler
148148

@@ -731,7 +731,7 @@ First, add a dependency on the event packages:
731731
}
732732
```
733733

734-
Modeling Lambda functions as Closures is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets hang, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
734+
Modeling Lambda functions as Closures is both simple and safe. Swift AWS Lambda Runtime will ensure that the user-provided code is offloaded from the network processing thread such that even if the code becomes slow to respond or gets stuck, the underlying process can continue to function. This safety comes at a small performance penalty from context switching between threads. In many cases, the simplicity and safety of using the Closure based API is often preferred over the complexity of the performance-oriented API.
735735

736736
### Using EventLoopLambdaHandler
737737

0 commit comments

Comments
 (0)