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

Commit 1e15649

Browse files
authored
Merge pull request #2566 from magento-commerce/10-6_integration
10 6 integration
2 parents b039e98 + 2f715fd commit 1e15649

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

src/cloud/project/services-rabbit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@ For debugging purposes, it is useful to directly connect to a service instance i
116116
1. Enable local port forwarding to RabbitMQ.
117117

118118
```bash
119-
ssh -L <port-number>:mq.internal:<port-number> <project-ID>-<branch-ID>@ssh.us.magentosite.cloud
119+
ssh -L <port-number>:rabbitmq.internal:<port-number> <project-ID>-<branch-ID>@ssh.us.magentosite.cloud
120120
```
121121

122122
An example for accessing the RabbitMQ management web interface at `http://localhost:15672` is:
123123

124124
```bash
125-
ssh -L 15672:localhost:15672 <project-ID>-<branch-ID>@ssh.us.magentosite.cloud
125+
ssh -L 15672:rabbitmq.internal:15672 <project-ID>-<branch-ID>@ssh.us.magentosite.cloud
126126
```
127127

128128
1. While the session is open, you can start a RabbitMQ client of your choice from your local workstation, configured to connect to the `localhost:<portnumber>` using the port number, username, and password information from the MAGENTO_CLOUD_RELATIONSHIPS variable.

src/guides/v2.3/howdoi/custom-attributes/text-field.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,22 +229,22 @@ class ExternalId implements DataPatchInterface
229229
/**
230230
* @var ModuleDataSetupInterface
231231
*/
232-
private ModuleDataSetupInterface $moduleDataSetup;
232+
private $moduleDataSetup;
233233

234234
/**
235235
* @var CustomerSetup
236236
*/
237-
private CustomerSetup $customerSetup;
237+
private $customerSetup;
238238

239239
/**
240240
* @var AttributeResource
241241
*/
242-
private AttributeResource $attributeResource;
242+
private $attributeResource;
243243

244244
/**
245245
* @var LoggerInterface
246246
*/
247-
private LoggerInterface $logger;
247+
private $logger;
248248

249249
/**
250250
* Constructor

src/guides/v2.3/security/two-factor-authentication.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,16 @@ If you need to manually reset a single user configuration, enter the following c
6363
bin/magento msp:security:tfa:reset <username> <provider>
6464
```
6565

66+
For example:
67+
68+
```bash
69+
bin/magento msp:security:tfa:reset admin google
70+
```
71+
72+
```bash
73+
bin/magento msp:security:tfa:reset admin u2fkey
74+
```
75+
6676
### Advanced emergency steps
6777

6878
{:.bs-callout-warning}

src/guides/v2.4/security/google-recaptcha.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@ The extension supports a command line option for disabling reCAPTCHA. Use this c
3030
```bash
3131
bin/magento security:recaptcha:disable-for-user-login
3232
```
33+
34+
You can disable Google reCAPTCHA for the Admin reset password page from the command line:
35+
36+
```bash
37+
bin/magento security:recaptcha:disable-for-user-forgot-password
38+
```

src/guides/v2.4/security/two-factor-authentication.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@ If you need to manually reset a single user configuration, enter the following c
105105
bin/magento security:tfa:reset <user> <provider>
106106
```
107107

108+
For example:
109+
110+
```bash
111+
bin/magento msp:security:tfa:reset admin google
112+
```
113+
114+
```bash
115+
bin/magento msp:security:tfa:reset admin u2fkey
116+
```
117+
108118
### Advanced emergency steps
109119

110120
{:.bs-callout-warning}

0 commit comments

Comments
 (0)