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
Where possible, we should use a "wait for state" method to determine conditions to continue instead of time.Sleep, as we don't know what latencies we might incur on the server side
The use of time.Sleep feeds into a wider discussion of use of bootstrapped configuration, where the preference is to create connections and flows explicitly from HCL code rather than depend on implicit configuration outside of the HCL dev's control
The text was updated successfully, but these errors were encountered:
Where possible, we should use a "wait for state" method to determine conditions to continue instead of
time.Sleep
, as we don't know what latencies we might incur on the server sideterraform-provider-davinci/internal/sdk/sdk.go
Lines 53 to 60 in 1a2d766
Example use in the PingOne provider here
The use of
time.Sleep
feeds into a wider discussion of use of bootstrapped configuration, where the preference is to create connections and flows explicitly from HCL code rather than depend on implicit configuration outside of the HCL dev's controlThe text was updated successfully, but these errors were encountered: