Skip to content

Commit 041f364

Browse files
author
Mike Trinkala
authored
Merge pull request #171 from mozilla-services/sprintSept18
Sprint sep18
2 parents 8638eeb + 607f743 commit 041f364

31 files changed

+2085
-79
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ lfs
8181
lpeg
8282
lsb
8383
moz_ingest
84+
moz_logging
8485
moz_pioneer
8586
moz_security
8687
moz_telemetry

aws/CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44

55
cmake_minimum_required(VERSION 3.5)
6-
project(aws VERSION 0.0.1 LANGUAGES C CXX)
6+
project(aws VERSION 0.0.2 LANGUAGES C CXX)
77
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "AWS Lua Modules")
88

99
find_package(aws-cpp-sdk-core 1.1.46 REQUIRED CONFIG)
1010
find_package(aws-cpp-sdk-kinesis 1.1.46 REQUIRED CONFIG)
11+
find_package(aws-cpp-sdk-monitoring 1.1.46 REQUIRED CONFIG)
1112

1213
set(MODULE_SRCS kinesis.cpp aws.def)
1314
set(INSTALL_MODULE_PATH ${INSTALL_IOMODULE_PATH})
1415
include(sandbox_module)
15-
target_link_libraries(aws aws-cpp-sdk-kinesis)
16+
target_link_libraries(aws aws-cpp-sdk-kinesis aws-cpp-sdk-monitoring)

aws/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ local writer = aws.kinesis.simple_producer(streamName, clientConfig, credentialP
5555
```
5656

5757
*Arguments*
58-
* clientConfig (table/nil) - https://sdk.amazonaws.com/cpp/api/LATEST/struct_aws_1_1_client_1_1_client_configuration.html
58+
* clientConfig (table/nil) https://sdk.amazonaws.com/cpp/api/LATEST/struct_aws_1_1_client_1_1_client_configuration.html
5959
* credentialProvider (enum/nil)
6060
* CHAIN
6161
* INSTANCE (default)
@@ -77,7 +77,7 @@ local records, checkpoints = reader:receive()
7777
* none
7878

7979
*Returns*
80-
* records (array) Zero or more data records (throws on a non recoverable error)
80+
* records (array) Zero or more data records (throws on error)
8181
* checkpoints (string/nil) TSV of shardId, sequenceId items (one per line)
8282

8383
### simple_producer Methods

0 commit comments

Comments
 (0)