@riddledc/riddle-proof 0.8.49 → 0.8.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/runtime/lib/ship.py +2 -2
package/package.json
CHANGED
package/runtime/lib/ship.py
CHANGED
|
@@ -891,7 +891,7 @@ def ship_gate_report_facts(state):
|
|
|
891
891
|
if not prod_cdn:
|
|
892
892
|
reasons.append('prod_cdn is required before ship')
|
|
893
893
|
if not after_evidence_present:
|
|
894
|
-
reasons.append('
|
|
894
|
+
reasons.append('after_cdn is required before ship')
|
|
895
895
|
if verify_status != 'evidence_captured':
|
|
896
896
|
reasons.append('verify_status must be evidence_captured before ship')
|
|
897
897
|
if proof_source not in ('supervising_agent', 'supervisor'):
|
|
@@ -931,7 +931,7 @@ def ship_gate_failure_message(ship_gate):
|
|
|
931
931
|
if not reasons:
|
|
932
932
|
return 'Ship gate is blocked.'
|
|
933
933
|
first = reasons[0]
|
|
934
|
-
if first == '
|
|
934
|
+
if first == 'after_cdn is required before ship':
|
|
935
935
|
return 'No after evidence in state. Run verify first.'
|
|
936
936
|
if first.startswith('visual_delta.'):
|
|
937
937
|
return first + '. Rerun verify with measured before/after visual delta or return a non-shipping proof assessment.'
|