Skip to content

Commit

Permalink
Remove GET request debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles committed Apr 23, 2019
1 parent 302fd9f commit a1eeafb
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions lib/fan-out-consumer.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,16 +131,12 @@ class FanOutConsumer {
await wait(5000);
}

const params = {
ConsumerARN: consumerArn,
ShardId: shardId,
StartingPosition: { Type: 'LATEST' }
};

logger.debug('GET', { params });

stream = httpClient.stream('/', {
body: JSON.stringify(params),
body: JSON.stringify({
ConsumerARN: consumerArn,
ShardId: shardId,
StartingPosition: { Type: 'LATEST' }
}),
headers: { 'X-Amz-Target': AWS_API_TARGET },
service: 'kinesis'
});
Expand Down

0 comments on commit a1eeafb

Please sign in to comment.