You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _data/pt-br/footer.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,4 @@ coc: Código de Conduta
4
4
trademark_policy: Política de Marcas
5
5
security_policy: Política de Segurança
6
6
license: Licença
7
-
trademark_legal: Copyright <a href='https://openjsf.org'>OpenJS Foundation</a> and Express contributors. All rights reserved. The <a href='https://openjsf.org'>OpenJS Foundation</a> has registered trademarks and uses trademarks. For a list of trademarks of the <a href='https://openjsf.org'>OpenJS Foundation</a>, please see our <a href='https://trademark-policy.openjsf.org'>Trademark Policy</a> and <a href='https://trademark-list.openjsf.org'>Trademark List</a>. Trademarks and logos not indicated on the <a href='https://trademark-list.openjsf.org'>list of OpenJS Foundation trademarks</a> are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
7
+
trademark_legal: Copyright <a href='https://openjsf.org'>OpenJS Foundation</a> e Express contributors. Todos os direitos reservados. A <a href='https://openjsf.org'>OpenJS Foundation</a> possui marcas registradas e utiliza marcas registradas. Para obter uma lista de marcas registradas da <a href='https://openjsf.org'>Fundação OpenJS</a>, por favor veja nossa <a href='https://trademark-policy.openjsf.org'>Politica de Marca</a> e <a href='https://trademark-list.openjsf.org'>Lista de Marcas</a>. Marcas e logotipos não indicados na lista <a href='https://trademark-list.openjsf.org'>de marcas registradas da OpenJS Foundation</a> são marcas registradas ou registradas de seus respectivos titulares. O uso deles não implica em nenhuma afiliação ou endosso por eles.
Copy file name to clipboardExpand all lines: pt-br/advanced/healthcheck-graceful-shutdown.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ redirect_from: " "
11
11
12
12
## Desligamento Gracioso
13
13
14
-
When you deploy a new version of your application, you must replace the previous version. The process manager you're using will first send a SIGTERM signal to the application to notify it that it will be killed. Once the application gets this signal, it should stop accepting new requests, finish all the ongoing requests, clean up the resources it used, including database connections and file locks then exit.
14
+
Quando você publica uma nova versão do seu aplicativo, você deve substituir a versão anterior. The process manager you're using will first send a SIGTERM signal to the application to notify it that it will be killed. Once the application gets this signal, it should stop accepting new requests, finish all the ongoing requests, clean up the resources it used, including database connections and file locks then exit.
15
15
16
16
### Exemplo
17
17
@@ -28,7 +28,7 @@ process.on('SIGTERM', () => {
28
28
29
29
## Verificações de integridade
30
30
31
-
A load balancer uses health checks to determine if an application instance is healthy and can accept requests. For example, [Kubernetes has two health checks](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/):
31
+
A load balancer uses health checks to determine if an application instance is healthy and can accept requests. Por exemplo, [Kubernetes tem dois exames de saúde](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/):
32
32
33
33
-`liveness`, that determines when to restart a container.
34
34
-`readiness`, that determines when a container is ready to start accepting traffic. When a pod is not ready, it is removed from the service load balancers.
0 commit comments