Change "return" to "returning".
This commit is contained in:
Keagan Roos 2022-09-23 16:22:03 +02:00 committed by GitHub
parent 51fff9246b
commit 70b26ae9f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ ____________________________________O/_______
⇨ http server started on [::]:8080
```
When you run this command, youll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without return control back to the OS until we stop the container.
When you run this command, youll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without returning control back to the OS until we stop the container.
Lets make a GET request to the server using the curl command.