-
-
Notifications
You must be signed in to change notification settings - Fork 74
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
Fix to make it possible to read file on a remote node #138
Fix to make it possible to read file on a remote node #138
Conversation
936e82c
to
420d9e9
Compare
314815a
to
242195b
Compare
I think the reason of a failure in the TravisCI is caused of the configuration for hubot. |
@userlocalhost You're right, good catch! We totally missed that Thanks for PR, will review it shortly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@userlocalhost The change looks good 👍
Thanks for the fix!
Yeah, CI is failing on unrelated to this PR @humblearner any ideas how we can fix/improve
|
@armab: I have increased the timeout to 25 for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @userlocalhost 👍. Just merge the latest from master. That should take care of the CI 🤞
Thanks @humblearner for checking. I've synced this PR with master. The failure is still there. https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings
|
Considering But not sure how to proceed this the right way in future, - because we can't turn down CI for contribution PRs. |
e9112bf
to
e275f3b
Compare
Yeah, Talking about forked CI failures, - created new Issue: #141 for that. |
When I execute stackstorm.yml playbook to build StackStorm environment from another (management) node, the following task is failed.
The task of
Read bwc_license_hash from file if it exits
failed to read thebwc_license_hash_file
. Because thewhen
statement checks a condition on the target (may be remote) node, but theLookups
plugin accesses data only on the local node (*1).(*1) http://docs.ansible.com/ansible/playbooks_lookups.html
This patch avoid this problem by reading the file on the target node and setting it to the variable.
Thank you.