Skip to content

Commit e11f172

Browse files
authored
Merge pull request #1089 from wso2/4.3.0
Sync main branch with 4.3.0 branch
2 parents 604b599 + b64e5ca commit e11f172

File tree

5 files changed

+76
-3
lines changed

5 files changed

+76
-3
lines changed

en/docs/develop/customizations/creating-custom-task-scheduling.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,19 @@ In order to deploy and run the project, refer the [build and run]({{base_path}}/
433433

434434
### Start the back-end service
435435

436-
Download the backend service from [GitHub](https://github.com/wso2-docs/WSO2_EI/blob/master/Back-End-Service/stockquote-deployable-jar-2.2.2.jar) and run it.
436+
1. Download the [back-end service](https://github.com/wso2-docs/WSO2_EI/blob/master/Back-End-Service/axis2Server.zip).
437+
2. Extract the downloaded zip file.
438+
3. Open a terminal, navigate to the `axis2Server/bin/` directory inside the extracted folder.
439+
4. Execute the following command to start the axis2server with the SimpleStockQuote back-end service:
440+
441+
=== "On MacOS/Linux"
442+
```bash
443+
sh axis2server.sh
444+
```
445+
=== "On Windows"
446+
```bash
447+
axis2server.bat
448+
```
437449

438450
### Create the text file
439451

en/docs/install-and-setup/setup/deployment-best-practices/basic-health-checks.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,41 @@ The health check API gives a **ready** status only if all the CApps are deployed
1111

1212
`http://localhost:9201/healthz`
1313

14+
!!! Note
15+
The health check can be performed over HTTPS APIs by adding the below configuration to the deployment.toml file.
16+
17+
```toml
18+
19+
[readiness_probe]
20+
protocols = "http https"
21+
```
22+
23+
Sample Request:
24+
```
25+
curl GET 'https://localhost:9164/healthz' -k
26+
```
27+
1428
### Liveness Check API
1529

1630
The liveness check API gives a **ready** status when the server starts successfully.
1731
The health check API serves at:
1832

1933
`http://localhost:9201/liveness`
2034

35+
!!! Note
36+
The liveness check can be performed over HTTPS APIs by adding the below configuration to the deployment.toml file.
37+
38+
```toml
39+
40+
[liveness_probe]
41+
protocols = "http https"
42+
```
43+
44+
Sample Request:
45+
46+
curl GET 'https://localhost:9164/liveness' -k
47+
```
48+
2149
!!! Note
2250
If you are running the server instance with a different port offset other than the default (which is 10), the heath
2351
check API serves at 9191 + offset.

en/docs/reference/connectors/amazonsqs-connector/2.x/amazonsqs-connector-2.x-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you do not want to configure this yourself, you can simply [get the project](
2020

2121
- [apache-client-2.20.26.jar ](https://mvnrepository.com/artifact/software.amazon.awssdk/apache-client/2.26.20)
2222
- [auth-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/auth/2.26.20)
23-
- [aws-core-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/sdk-core/2.26.20)
23+
- [aws-core-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/aws-core/2.26.20)
2424
- [checksums-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/checksums/2.26.20)
2525
- [checksums-spi-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/checksums-spi/2.26.20)
2626
- [endpoints-spi-2.26.20.jar](https://mvnrepository.com/artifact/software.amazon.awssdk/endpoints-spi/2.26.20)

en/docs/reference/connectors/smpp-connector/smpp-connector-config.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,34 @@ To use the SMPP connector, need to have a SMSC connection. To create a SMSC conn
269269
<td>Content of the SMS message.</td>
270270
<td>Yes</td>
271271
</tr>
272+
<tr>
273+
<td>smscDeliveryReceipt</td>
274+
<td>This parameter is used to request an SMSC delivery receipt. The following values can be defined:
275+
<table>
276+
<tr>
277+
<th>Value</th>
278+
<th>Description</th>
279+
</tr>
280+
<tr>
281+
<td>DEFAULT</td>
282+
<td>No SMSC Delivery Receipt requested. This is the default value.</td>
283+
</tr>
284+
<tr>
285+
<td>SUCCESS_FAILURE</td>
286+
<td>SMSC Delivery Receipt requested where final delivery outcome is delivery success or failure.</td>
287+
</tr>
288+
<tr>
289+
<td>FAILURE</td>
290+
<td>SMSC Delivery Receipt requested where the final delivery outcome is delivery failure.</td>
291+
</tr>
292+
<tr>
293+
<td>SUCCESS</td>
294+
<td>SMSC Delivery Receipt requested where the final delivery outcome is success. This is supported from SMPP 5.0.</td>
295+
</tr>
296+
</table>
297+
</td>
298+
<td>Optional</td>
299+
</tr>
272300
<tr>
273301
<td>esmClass</td>
274302
<td>

en/docs/reference/connectors/snowflake-connector/snowflake-connector-reference.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The following operations allow you to work with the Snowflake Connector. Click an operation name to see parameter details.
44

5-
## Snowflake Connector Configuration
5+
## Snowflake connector configuration
66

77
??? note "Connection configuration"
88
In the 'Properties' section of each operation, users can configure connection-related information. Once the configuration is created, it can be re-used in other operations.
@@ -32,6 +32,11 @@ The following operations allow you to work with the Snowflake Connector. Click a
3232
<td>Snowflake Account password.</td>
3333
<td>Yes</td>
3434
</tr>
35+
<tr>
36+
<td>keepAlive</td>
37+
<td>Indicates whether to create a new connection after a period of inactivity in the session. Accepted values: `true`: Snowflake keeps the session active indefinitely as long as the connection is active, even if there is no activity, `false`: A new connection is created again after four hours of inactivity. The default value is `false`</td>
38+
<td>No</td>
39+
</tr>
3540
</table>
3641

3742

0 commit comments

Comments
 (0)