We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 748e515 commit a9a0f06Copy full SHA for a9a0f06
src/requests.rs
@@ -372,7 +372,7 @@ pub struct BulkUserDelete<'a> {
372
pub type RuntimeParameterValue = Map<String, Value>;
373
374
/// Represents a [runtime parameter](https://rabbitmq.com/docs/parameters/).
375
-#[derive(Serialize, Deserialize)]
+#[derive(Serialize, Deserialize, Debug, Clone)]
376
pub struct RuntimeParameterDefinition<'a> {
377
pub name: &'a str,
378
pub vhost: &'a str,
@@ -582,7 +582,7 @@ impl<'a> From<FederationUpstreamParams<'a>> for RuntimeParameterDefinition<'a> {
582
Self {
583
name: params.name,
584
vhost: params.vhost,
585
- component: SHOVEL_COMPONENT,
+ component: FEDERATION_UPSTREAM_COMPONENT,
586
value,
587
}
588
0 commit comments