You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the client proxy interface is permitted to not supply a HalibutProxyRequestOptions, which means the caller does not provide a CancellationToken so the code must generate CancellationToken.None and the caller has no way of cancelling that token.
This also lead to situations in which the code needs to do null checking to see if the HalibutProxyRequestOptions are passed or not.
To complete this we should enforce that HalibutProxyRequestOptions must be provided for every RPC call e.g. the client service contracts must support this parameter and the Proxy enforces it is not null.
Currently the client proxy interface is permitted to not supply a
HalibutProxyRequestOptions
, which means the caller does not provide a CancellationToken so the code must generate CancellationToken.None and the caller has no way of cancelling that token.This also lead to situations in which the code needs to do null checking to see if the
HalibutProxyRequestOptions
are passed or not.To complete this we should enforce that HalibutProxyRequestOptions must be provided for every RPC call e.g. the client service contracts must support this parameter and the Proxy enforces it is not null.
See details here #525 (comment)
The text was updated successfully, but these errors were encountered: