Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

two nodes with same codebase display a different version #2331

Closed
thestick613 opened this issue Feb 8, 2019 · 1 comment
Closed

two nodes with same codebase display a different version #2331

thestick613 opened this issue Feb 8, 2019 · 1 comment
Assignees
Labels

Comments

@thestick613
Copy link
Contributor

I've done git pull origin master on both nodes, make clean, make -j 4, but when i run getinfo, i get this:

  "version": "v0.6.2-464-gd413fc7", 
  "version": "v0.6.1-703-gd413fc7", 

Is this expected?

@cdecker
Copy link
Member

cdecker commented Feb 8, 2019

This can happen when the second pull misses the v0.6.2 tag. Basically the number between version tag and the git commit ID is the number of commits since that tag. They are identical, but the second missed that there is the v0.6.2 tag (and both are missing 0.6.3 for that matter) hence it shows v0.6.1 + 703 commits. If you do git fetch --tags --force it should get the tags, and then rebuilding should use the correct version tags :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants