File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -119,9 +119,10 @@ func (e *ProviderInitError) Error() string {
119119 return fmt .Sprintf ("ProviderInitError: %s (code: %s)" , e .Message , e .ErrorCode )
120120}
121121
122+ //nolint:staticcheck // Renaming these would be a breaking change
122123var (
123124 // ProviderNotReadyError signifies that an operation failed because the provider is in a NOT_READY state.
124- ProviderNotReadyError = errors .New ("provider not yet initialized" ) //nolint:staticcheck // Renaming this would be a breaking change
125+ ProviderNotReadyError = errors .New ("provider not yet initialized" )
125126 // ProviderFatalError signifies that an operation failed because the provider is in a FATAL state.
126- ProviderFatalError = errors .New ("provider is in an irrecoverable error state" ) //nolint:staticcheck // Renaming this would be a breaking change
127+ ProviderFatalError = errors .New ("provider is in an irrecoverable error state" )
127128)
You can’t perform that action at this time.
0 commit comments