Skip to content

Commit b2d515d

Browse files
committed
clarified doc comment
1 parent 28a38db commit b2d515d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • deploy/helm/airflow-operator/crds
  • rust/operator-binary/src/crd

deploy/helm/airflow-operator/crds/crds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ spec:
598598
properties:
599599
enabled:
600600
default: true
601-
description: 'Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be (technically) backwards-compatible but also safe. WARNING: setting this to false is *unsupported* as subsequent updates to the Airflow cluster may result in broken behaviour due to inconsistent metadata! Do not change the default unless you know what you are doing!'
601+
description: 'Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be backwards-compatible. WARNING: setting this to false is *unsupported* as subsequent updates to the Airflow cluster may result in broken behaviour due to inconsistent metadata! Do not change the default unless you know what you are doing!'
602602
type: boolean
603603
type: object
604604
exposeConfig:

rust/operator-binary/src/crd/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ pub mod versioned {
288288
#[derive(Clone, Debug, Deserialize, JsonSchema, PartialEq, Serialize)]
289289
#[serde(rename_all = "camelCase")]
290290
pub struct DatabaseInitializationConfig {
291-
/// Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be (technically) backwards-compatible but also safe.
291+
/// Whether to execute the database initialization routines (a combination of database initialization, upgrade and migration depending on the Airflow version). Defaults to true to be backwards-compatible.
292292
/// WARNING: setting this to false is *unsupported* as subsequent updates to the Airflow cluster may result in broken behaviour due to inconsistent metadata!
293293
/// Do not change the default unless you know what you are doing!
294294
#[serde(default = "default_db_init")]

0 commit comments

Comments
 (0)