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
The ip address changes each time the app restarts, which caused problems. To improve it:
- The ip address is retrieved right before it is used
- If there is no ip address, it skips the curl command
- Add a 10 second timeout to the curl command. If the ip address is no longer used by docker, it will instead try to load the page from a remote server with the ip address, which can take a while.
- If the app is restarting during 10 checks, it will revert the app without waiting the full time
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,15 @@ The `mup status` command gives an overview of what is running on the servers and
25
25
-`mup init` will create a `.deploy` folder when run in the same folder as a Meteor app
26
26
- When mup can find a meteor app near to where `mup init` is run, the default config's `app.path` will be the path to that app
27
27
- When a deploy fails, the last 200 instead of 100 lines of the app's logs are shown
28
-
- More of the logs are shown when a command fails
28
+
- More of the output is shown when a command fails
29
29
- When copying a file fails with the error `No such file`, it will tell the user to run `mup setup` to fix it
30
30
-`reconfig` hooks will now run during `mup deploy`
31
31
-`--show` is no longer needed to show the config when `mup validate --scrub` is run
32
32
- Add section to readme about Meteor compatibility
33
33
- Initial work has been done to support Docker Swarm
34
34
- When there is only one server, `mup ssh` will not require the name of a server
35
+
- If the app's docker container is restarting during 10 checks, the Deployment Verifier will revert the app without waiting the full time in `deployCheckWaitTime`
36
+
- Added 10 second timeout to the curl command in the Deployment Verifier
35
37
- Fix retry logic for the copy file task
36
38
- Fix running Prepare Bundle when image already has a `/built_app` folder
37
39
- Fix alignment of list of servers when running `mup ssh` without specifying a server
0 commit comments