-
Notifications
You must be signed in to change notification settings - Fork 6
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
misc improvements (caching, logging, robustness) #92
Conversation
solves #89
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.
LGTM! A few minor suggestions, but the logic looks sound.
Thanks for separating this into a more digestible form.
|
||
echo "[$PROPOSAL_PATH] Starting agd" |
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.
Detritus?
echo "[$PROPOSAL_PATH] Starting agd" |
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.
ah, probably bad rebase. will correct in next PR
echo "Must specify what proposal to use" | ||
exit 1 | ||
fi | ||
PROPOSAL_PATH="/usr/src/proposals/$ID/" | ||
PROPOSAL_PROPOSAL="/usr/src/proposals/$PROPOSAL/" |
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.
Maybe:
PROPOSAL_PROPOSAL="/usr/src/proposals/$PROPOSAL/" | |
PROPOSAL_DIR="/usr/src/proposals/$PROPOSAL/" |
Ancillary changes for #88 that needn't wait for that PR itself to be landed.