File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Example:
4444 (request-data-key :feature-flag-evaluation-context ))
4545 " Create a feature-flag client composed with request-scoped context.
4646OBJECT-OF-INTEREST defaults to REQUEST and is used by RESOLVE-PROVIDER.
47- NAME is accepted for backward compatibility and currently unused.
47+ NAME is accepted for backward compatibility; it was used by the removed CREATE-CLIENT API and is currently unused.
4848Example:
4949 (client-for-request request :domain \" payments\" :evaluation-context '(:app \" checkout\" ))
5050 => #<CLIENT ...>"
Original file line number Diff line number Diff line change 9494
9595(defmethod resolve-provider ((holder provider-holder) domain)
9696 (or (and domain (cdr (assoc domain (provider-holder-domain-providers holder) :test #' equal )))
97- (provider-holder-default-provider holder)))
97+ (provider-holder-default-provider holder)
98+ (call-next-method )))
9899
99100(test provider-without-resolver-returns-default-and-provider-not-ready-error
100101 (let* ((client (acquire-client (make-instance ' provider :name " base" )))
You can’t perform that action at this time.
0 commit comments