-
Notifications
You must be signed in to change notification settings - Fork 44
Booster interim simplification, refactor rewrite and logging parameters #4010
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
Conversation
…interim-simplification
4ef3106
to
cd2a4dd
Compare
# use special options if given, but restore KORE_RPC_OPTS afterwards | ||
if [ ! -z "${FEATURE_SERVER_OPTS}" ]; then | ||
echo "Using special options '${FEATURE_SERVER_OPTS}' via KORE_RPC_OPTS" | ||
if [ ! -z "${KORE_RPC_OPTS:-}" ]; then | ||
PRIOR_OPTS=${KORE_RPC_OPTS} | ||
fi | ||
export KORE_RPC_OPTS=${FEATURE_SERVER_OPTS} | ||
fi |
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.
I put this in ad-hoc, it is helpful when new optional features are introduced (here: running with --simplify-each
) but those options won't show in the log files for the timing, unfortunately.
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.
Nice! I left one minor comment.
--simplify-each DEPTH
which runs a booster-only simplification everyDEPTH
stepsLogOptions
typeperformRewrite
andrunRewriteT
to use a pre-madeRewriteConfig
(extended by parameters required only inperformRewrite