Skip to content

Commit c8feb2d

Browse files
committed
Use u128 for request timeout duration
1 parent acb1c4d commit c8feb2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/executor/src/executors/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub enum SubgraphExecutorError {
2525
#[error("Failed to resolve VRL expression for timeout for subgraph '{0}'. Runtime error: {1}")]
2626
TimeoutExpressionResolution(String, String),
2727
#[error("Request to subgraph \"{0}\" timed out after {1} milliseconds")]
28-
RequestTimeout(String, u64),
28+
RequestTimeout(String, u128),
2929
}
3030

3131
impl From<SubgraphExecutorError> for GraphQLError {

0 commit comments

Comments
 (0)