Skip to content

Commit

Permalink
[Cisco Meraki Collector] Integration testing small fix creation of bu…
Browse files Browse the repository at this point in the history
…cket in s3 when self update (alertlogic#373)
  • Loading branch information
imranalisyed506 authored Jul 1, 2024
1 parent e8e04ed commit d9911e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion collectors/ciscomeraki/collector.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class CiscomerakiCollector extends PawsCollector {
await merakiClient.uploadNetworksListInS3Bucket(keyValue, networks);
});
}
} else if (networksFromS3 && collector._isFileMissingError(networksFromS3.code)) {
} else if (networksFromS3 && collector._isFileMissingError(networksFromS3.Code)) {
AlLogger.debug(`CMRI0000026 networks ${JSON.stringify(params)} ${JSON.stringify(networks)}`);
await merakiClient.uploadNetworksListInS3Bucket(keyValue, networks);
}
Expand Down
2 changes: 1 addition & 1 deletion collectors/ciscomeraki/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ciscomeraki-collector",
"version": "1.0.1",
"version": "1.0.2",
"description": "Alert Logic AWS based Cisco Meraki Log Collector",
"repository": {},
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion ps_spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ stages:
- ./build_collector.sh ciscomeraki
env:
ALPS_SERVICE_NAME: "paws-ciscomeraki-collector"
ALPS_SERVICE_VERSION: "1.0.1" #set the value from collector package json
ALPS_SERVICE_VERSION: "1.0.2" #set the value from collector package json
outputs:
file: ./ciscomeraki-collector*
packagers:
Expand Down

0 comments on commit d9911e6

Please sign in to comment.