Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit dec2142

Browse files
keharperJulian van den BerkmortelhguthrieCJsathiyaaa
authored
Merge small-changes branch into master (#8418)
* Use "jekyll/jekyll:3.8.6" so it is locked, rather than "latest", refs #8370 * Update README.md * Updated the linux kernel info in software pgae * added a missing code-fence * fixed lint * fixed lint * Apply suggestions from code review Co-authored-by: Barny Shergold <[email protected]> * shipment-email-notify (#8399) * shipment-email-notify * Update order-create-shipment.md Co-authored-by: Julian van den Berkmortel <[email protected]> Co-authored-by: hguthrie <[email protected]> Co-authored-by: CJ <[email protected]> Co-authored-by: Sathiya Prakash <[email protected]> Co-authored-by: chiranjeevi <[email protected]> Co-authored-by: Barny Shergold <[email protected]> Co-authored-by: Jeff Matthews <[email protected]> Co-authored-by: Rakesh Jesadiya <[email protected]>
1 parent 97998f2 commit dec2142

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This site is built by [Jekyll](https://jekyllrb.com/), which is an open-source t
1515
You can build the site locally in the following ways:
1616

1717
- [Installing the project dependencies locally](#build-locally) (Mac, Linux)
18-
- [Using Docker (docker-compose)](#docker-docker-compose) (Mac, Linux, Windows)
18+
- [Using Docker (docker-compose)](https://github.com/magento/devdocs/wiki/Build-DevDocs-with-Docker) (Mac, Linux, Windows)
1919
- [Using a Vagrant virtual machine](https://github.com/magento-devdocs/vagrant-for-magento-devdocs) (Mac, Linux, Windows)
2020
- [Build DevDocs in Windows](https://github.com/magento/devdocs/wiki/Build-DevDocs-in-Windows) (Windows 7 & 10)
2121
- [Building older versions of the documentation](https://github.com/magento/devdocs/wiki/Build-DevDocs-with-Docker)

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.6'
22

33
services:
44
jekyll:
5-
image: jekyll/jekyll:latest
5+
image: jekyll/jekyll:3.8.6
66
command: jekyll serve --watch --incremental --open-url --livereload
77
ports:
88
- 4000:4000

src/guides/v2.3/javascript-dev-guide/javascript/js_init.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Consider the example of adding a custom carousel JS:
4444
$(element).<carousel_name>(config);
4545
};
4646
});
47+
```
4748

4849
1. Add the RequireJS config to the `app/design/frontend/<package_name>/<theme_name>/requirejs-config.js` file.
4950

src/guides/v2.3/performance-best-practices/software.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ See [Magento 2.2.x technology stack requirements]({{page.baseurl}}/install-gde/s
2424

2525
## Operating system
2626

27-
Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" and "recycle" TCP connections. Be aware that more aggressive recycling than re-use may cause issues on the load balancers. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
27+
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:
28+
29+
{:.bs-callout-info}
30+
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.
2831

2932
```terminal
30-
net.ipv4.tcp_tw_recycle = 1
3133
net.ipv4.tcp_tw_reuse = 1
3234
```
3335

src/guides/v2.3/rest/tutorials/orders/order-create-shipment.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ where `3` is the order id.
3737

3838
**Payload:**
3939

40-
The `tracks` array optionally allows you to include one or more tracking numbers for the [shipment](https://glossary.magento.com/shipment).
40+
The `notify` field is used to trigger Magento to send the shipment email. The `tracks` array optionally allows you to include one or more tracking numbers for the [shipment](https://glossary.magento.com/shipment).
4141

4242
{% collapsible Show code sample %}
4343

@@ -57,6 +57,7 @@ The `tracks` array optionally allows you to include one or more tracking numbers
5757
"qty": 1
5858
}
5959
],
60+
"notify": true,
6061
"tracks": [
6162
{
6263
"track_number": "1Y-9876543210",
@@ -75,4 +76,4 @@ A shipment ID, such as `3`.
7576

7677
## Verify this step
7778

78-
Log in to [Admin](https://glossary.magento.com/admin). Click **Sales** > **Shipments**. The shipment is displayed in the grid. Then click **Sales** > **Orders**. The status is Complete.
79+
Log in to [Admin](https://glossary.magento.com/admin). Click **Sales** > **Shipments**. The shipment is displayed in the grid. Then click **Sales** > **Orders**. The order status is Complete.

src/guides/v2.4/performance-best-practices/software.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ See [Magento technology stack requirements]({{page.baseurl}}/install-gde/system-
2424

2525
## Operating system
2626

27-
Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" and "recycle" TCP connections. Be aware that more aggressive recycling than re-use may cause issues on the load balancers. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
27+
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:
28+
29+
{:.bs-callout-info}
30+
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.
2831

2932
```terminal
30-
net.ipv4.tcp_tw_recycle = 1
3133
net.ipv4.tcp_tw_reuse = 1
3234
```
3335

0 commit comments

Comments
 (0)