Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit f401ed4

Browse files
authored
fix(validator) dockerfile env causing invalidations not to be triggered(#536)
1 parent a1fedba commit f401ed4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/validator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ $([ ! -z "$TOPLOC_GRACE_INTERVAL" ] && echo "--toploc-grace-interval $TOPLOC_GRA
3737
$([ ! -z "$BATCH_TRIGGER_SIZE" ] && echo "--batch-trigger-size $BATCH_TRIGGER_SIZE") \
3838
$([ ! -z "$TOPLOC_WORK_VALIDATION_INTERVAL" ] && echo "--toploc-work-validation-interval $TOPLOC_WORK_VALIDATION_INTERVAL") \
3939
$([ ! -z "$TOPLOC_WORK_VALIDATION_UNKNOWN_STATUS_EXPIRY_SECONDS" ] && echo "--toploc-work-validation-unknown-status-expiry-seconds $TOPLOC_WORK_VALIDATION_UNKNOWN_STATUS_EXPIRY_SECONDS") \
40-
$([ ! -z "$USE_GROUPING" ] && echo "--use-grouping") \
41-
$([ ! -z "$DISABLE_TOPLOC_INVALIDATION" ] && echo "--disable-toploc-invalidation") \
40+
$([ "$USE_GROUPING" = "true" ] && echo "--use-grouping") \
41+
$([ "$DISABLE_TOPLOC_INVALIDATION" = "true" ] && echo "--disable-toploc-invalidation") \
4242
$([ ! -z "$INCOMPLETE_GROUP_GRACE_PERIOD_MINUTES" ] && echo "--incomplete-group-grace-period-minutes $INCOMPLETE_GROUP_GRACE_PERIOD_MINUTES") \
4343
$([ ! -z "$VALIDATOR_PENALTY" ] && echo "--validator-penalty $VALIDATOR_PENALTY") \
4444
$([ "$DISABLE_HARDWARE_VALIDATION" = "true" ] && echo "--disable-hardware-validation") \

0 commit comments

Comments
 (0)