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
{{ message }}
This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
Right now, in fly.py (get_fly) we are just checking if the fly binary exists in DEFAULT_FLY_BIN, but apparently, we are not checking if the version of the fly CLI is the same as the server.
When we upgrade the server to the latest version, all of a sudden our client program fails (It throws warning that fly is out of sync). We should enhance the get_fly method by not just checking if the fly binary exists but also if it is same as server, if not we need to run the "fly sync" command.
Error: WARNING:
fly version (5.0.1) is out of sync with the target (5.2.0). to sync up, run the following:
fly -t default sync
The text was updated successfully, but these errors were encountered:
Right now, in fly.py (get_fly) we are just checking if the fly binary exists in DEFAULT_FLY_BIN, but apparently, we are not checking if the version of the fly CLI is the same as the server.
When we upgrade the server to the latest version, all of a sudden our client program fails (It throws warning that fly is out of sync). We should enhance the get_fly method by not just checking if the fly binary exists but also if it is same as server, if not we need to run the "fly sync" command.
The text was updated successfully, but these errors were encountered: