Skip to content

Commit c2d0c06

Browse files
Fix AirlockDigital poller timeouts and pagination, increase request timeout 30s→120s and fix checkpoint paging path ([-1]→[-1:]) for server activities, execution histories, and fileactivity pollers. Suppress connectivity check (no health endpoint) and regenerate connector artifacts + solution package.
1 parent b1378f5 commit c2d0c06

4 files changed

Lines changed: 11 additions & 12 deletions

File tree

Solutions/AirlockDigital/Data Connectors/AirlockDigital_CCF/AirlockDigital_PollerConfig.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"httpMethod": "POST",
1717
"queryWindowInMin": 5,
1818
"retryCount": 3,
19-
"timeoutInSeconds": 30,
19+
"timeoutInSeconds": 120,
2020
"isPostPayloadJson": true,
2121
"headers": {
2222
"Accept": "application/json",
@@ -32,7 +32,7 @@
3232
},
3333
"paging": {
3434
"pagingType": "PersistentToken",
35-
"nextPageTokenJsonPath": "$.response.svractivities[-1].checkpoint",
35+
"nextPageTokenJsonPath": "$.response.svractivities[-1:].checkpoint",
3636
"nextPageParaName": "checkpoint",
3737
"pagingInfoPlacement": "RequestBody"
3838
},
@@ -62,7 +62,7 @@
6262
"httpMethod": "POST",
6363
"queryWindowInMin": 5,
6464
"retryCount": 3,
65-
"timeoutInSeconds": 30,
65+
"timeoutInSeconds": 120,
6666
"isPostPayloadJson": true,
6767
"headers": {
6868
"Accept": "application/json",
@@ -78,7 +78,7 @@
7878
},
7979
"paging": {
8080
"pagingType": "PersistentToken",
81-
"nextPageTokenJsonPath": "$.response.exechistories[-1].checkpoint",
81+
"nextPageTokenJsonPath": "$.response.exechistories[-1:].checkpoint",
8282
"nextPageParaName": "checkpoint",
8383
"pagingInfoPlacement": "RequestBody"
8484
},
@@ -108,7 +108,7 @@
108108
"httpMethod": "POST",
109109
"queryWindowInMin": 5,
110110
"retryCount": 3,
111-
"timeoutInSeconds": 30,
111+
"timeoutInSeconds": 120,
112112
"isPostPayloadJson": true,
113113
"headers": {
114114
"Accept": "application/json",
1 Byte
Binary file not shown.

Solutions/AirlockDigital/Package/mainTemplate.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@
10901090
"httpMethod": "POST",
10911091
"queryWindowInMin": 5,
10921092
"retryCount": 3,
1093-
"timeoutInSeconds": 30,
1093+
"timeoutInSeconds": 120,
10941094
"isPostPayloadJson": true,
10951095
"headers": {
10961096
"Accept": "application/json",
@@ -1106,7 +1106,7 @@
11061106
},
11071107
"paging": {
11081108
"pagingType": "PersistentToken",
1109-
"nextPageTokenJsonPath": "$.response.svractivities[-1].checkpoint",
1109+
"nextPageTokenJsonPath": "$.response.svractivities[-1:].checkpoint",
11101110
"nextPageParaName": "checkpoint",
11111111
"pagingInfoPlacement": "RequestBody"
11121112
},
@@ -1136,7 +1136,7 @@
11361136
"httpMethod": "POST",
11371137
"queryWindowInMin": 5,
11381138
"retryCount": 3,
1139-
"timeoutInSeconds": 30,
1139+
"timeoutInSeconds": 120,
11401140
"isPostPayloadJson": true,
11411141
"headers": {
11421142
"Accept": "application/json",
@@ -1152,7 +1152,7 @@
11521152
},
11531153
"paging": {
11541154
"pagingType": "PersistentToken",
1155-
"nextPageTokenJsonPath": "$.response.exechistories[-1].checkpoint",
1155+
"nextPageTokenJsonPath": "$.response.exechistories[-1:].checkpoint",
11561156
"nextPageParaName": "checkpoint",
11571157
"pagingInfoPlacement": "RequestBody"
11581158
},
@@ -1182,7 +1182,7 @@
11821182
"httpMethod": "POST",
11831183
"queryWindowInMin": 5,
11841184
"retryCount": 3,
1185-
"timeoutInSeconds": 30,
1185+
"timeoutInSeconds": 120,
11861186
"isPostPayloadJson": true,
11871187
"headers": {
11881188
"Accept": "application/json",
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** |
22
|-------------|--------------------------------|--------------------------------------------------------------|
3-
| 3.0.2 | 22-07-2026 | Updated Airlock Digital CCF connector definition: removed deprecated graphQueriesTableName property in favor of hardcoded table names in graph and sample queries, and set connector availability to GA (isPreview=false). |
4-
| 3.0.2 | 22-07-2026 | Promoted Airlock Digital CCF data connector from public preview to GA |
3+
| 3.0.2 | 22-07-2026 | Fixed log ingestion: increased data connector poller timeout to 120s and corrected the pagination token path to slice notation for Server Activities and Execution Histories to resolve fetch timeouts and out-of-range paging errors. Removed deprecated graphQueriesTableName property (hardcoded table names in queries) and promoted the connector from public preview to GA. |
54
| 3.0.1 | 02-06-2026 | Fixed: Removed empty ApiKeyIdentifier field for Partner Center certification compliance. Fixed UX description typo. |
65
| 3.0.0 | 20-05-2026 | Created a Data Connector for Airlock Digital CCF Container with Server Activities, Execution Histories, and File Activity Summary data streams. |

0 commit comments

Comments
 (0)