mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
chore: remove repetitive words (#4448)
Signed-off-by: hardlydearly <799511800@qq.com>
This commit is contained in:
@ -286,7 +286,7 @@ cards = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
||||||
# It defines the the streams/queues name and configuration as well as event selection variables
|
# It defines the streams/queues name and configuration as well as event selection variables
|
||||||
[scheduler]
|
[scheduler]
|
||||||
stream = "SCHEDULER_STREAM"
|
stream = "SCHEDULER_STREAM"
|
||||||
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
||||||
# It defines the the streams/queues name and configuration as well as event selection variables
|
# It defines the streams/queues name and configuration as well as event selection variables
|
||||||
[scheduler]
|
[scheduler]
|
||||||
consumer_group = "scheduler_group"
|
consumer_group = "scheduler_group"
|
||||||
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
|
||||||
# It defines the the streams/queues name and configuration as well as event selection variables
|
# It defines the streams/queues name and configuration as well as event selection variables
|
||||||
[scheduler]
|
[scheduler]
|
||||||
consumer_group = "scheduler_group"
|
consumer_group = "scheduler_group"
|
||||||
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
|
||||||
|
|||||||
@ -27,7 +27,7 @@ storage:
|
|||||||
v2_index_downsample_bytes: 1000 # number of bytes per index record
|
v2_index_downsample_bytes: 1000 # number of bytes per index record
|
||||||
v2_encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
v2_encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
wal:
|
wal:
|
||||||
path: /tmp/tempo/wal # where to store the the wal locally
|
path: /tmp/tempo/wal # where to store the wal locally
|
||||||
v2_encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
v2_encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
local:
|
local:
|
||||||
path: /tmp/tempo/blocks
|
path: /tmp/tempo/blocks
|
||||||
|
|||||||
@ -95,7 +95,7 @@ pub struct EmailContents {
|
|||||||
/// The subject of email
|
/// The subject of email
|
||||||
pub subject: String,
|
pub subject: String,
|
||||||
|
|
||||||
/// This will be the intermediate representation of the the email body in a generic format.
|
/// This will be the intermediate representation of the email body in a generic format.
|
||||||
/// The email clients can convert this intermediate representation to their client specific rich text format
|
/// The email clients can convert this intermediate representation to their client specific rich text format
|
||||||
pub body: IntermediateString,
|
pub body: IntermediateString,
|
||||||
|
|
||||||
|
|||||||
@ -337,7 +337,7 @@ pub struct Card {
|
|||||||
pub expiry_year: Secret<String>,
|
pub expiry_year: Secret<String>,
|
||||||
/// Indicates whether the card is a debit or credit card.
|
/// Indicates whether the card is a debit or credit card.
|
||||||
pub funding: Option<Funding>,
|
pub funding: Option<Funding>,
|
||||||
/// The the card account number used to authorize the transaction. Also known as PAN.
|
/// The card account number used to authorize the transaction. Also known as PAN.
|
||||||
pub number: cards::CardNumber,
|
pub number: cards::CardNumber,
|
||||||
/// Contains the pin block info, relating to the pin code the Payer entered.
|
/// Contains the pin block info, relating to the pin code the Payer entered.
|
||||||
pub pin_block: Option<Secret<String>>,
|
pub pin_block: Option<Secret<String>>,
|
||||||
@ -776,7 +776,7 @@ pub enum Model {
|
|||||||
Unscheduled,
|
Unscheduled,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The reason stored credentials are being used to to create a transaction.
|
/// The reason stored credentials are being used to create a transaction.
|
||||||
#[derive(Debug, Serialize, Deserialize)]
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
||||||
pub enum Reason {
|
pub enum Reason {
|
||||||
|
|||||||
@ -11,7 +11,7 @@ macro_rules! metrics_context {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create a global [`Meter`][Meter] with the specified name and and an optional description.
|
/// Create a global [`Meter`][Meter] with the specified name and an optional description.
|
||||||
///
|
///
|
||||||
/// [Meter]: opentelemetry::metrics::Meter
|
/// [Meter]: opentelemetry::metrics::Meter
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
|
|||||||
@ -27,7 +27,7 @@ storage:
|
|||||||
index_downsample_bytes: 1000 # number of bytes per index record
|
index_downsample_bytes: 1000 # number of bytes per index record
|
||||||
encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
wal:
|
wal:
|
||||||
path: /tmp/tempo/wal # where to store the the wal locally
|
path: /tmp/tempo/wal # where to store the wal locally
|
||||||
encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
local:
|
local:
|
||||||
path: /tmp/tempo/blocks
|
path: /tmp/tempo/blocks
|
||||||
|
|||||||
Reference in New Issue
Block a user