vax-r commented on issue #2198:
URL: https://github.com/apache/iggy/issues/2198#issuecomment-3343357220
I see, so only function/structs accepting `u32` now should be changed. e.g.
the following function in
`core/binary_protocol/src/client/binary_clients/topic_client.rs`
```
#[allow(clippy::too_many_arguments)]
async fn create_topic(
&self,
stream_id: &Identifier,
name: &str,
partitions_count: u32,
compression_algorithm: CompressionAlgorithm,
replication_factor: Option<u8>,
message_expiry: IggyExpiry,
max_topic_size: MaxTopicSize,
) -> Result<TopicDetails, IggyError>;
```
Others will left unchanged, is my understanding correct ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]