File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
crates/common/src/provider Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ pub enum RuntimeTransportError {
38
38
#[ error( "Internal transport error: {0} with {1}" ) ]
39
39
TransportError ( TransportError , String ) ,
40
40
41
- /// Failed to lock the transport
42
- #[ error( "Failed to lock the transport" ) ]
43
- LockError ,
44
-
45
41
/// Invalid URL scheme
46
42
#[ error( "URL scheme is not supported: {0}" ) ]
47
43
BadScheme ( String ) ,
@@ -70,7 +66,7 @@ pub enum RuntimeTransportError {
70
66
/// either an HTTP WebSocket, or IPC transport depending on the URL used.
71
67
/// Retries for rate-limiting and timeout-related errors are handled by an external
72
68
/// client layer (e.g., `RetryBackoffLayer`) when configured.
73
- #[ derive( Clone , Debug , Error ) ]
69
+ #[ derive( Clone , Debug ) ]
74
70
pub struct RuntimeTransport {
75
71
/// The inner actual transport used.
76
72
inner : Arc < RwLock < Option < InnerTransport > > > ,
You can’t perform that action at this time.
0 commit comments