Skip to content

fix(distributed): scale the remote model-load deadline with checkpoint size#11030

Open
localai-bot wants to merge 1 commit into
masterfrom
fix/model-load-timeout-scaling
Open

fix(distributed): scale the remote model-load deadline with checkpoint size#11030
localai-bot wants to merge 1 commit into
masterfrom
fix/model-load-timeout-scaling

Conversation

@localai-bot

Copy link
Copy Markdown
Collaborator

The problem

DefaultModelLoadTimeout was a fixed 5 * time.Minute — the gRPC deadline on the remote LoadModel call. That deadline starts only after backend install and file staging complete, so it covers the worker's checkpoint read and pipeline init alone. That work is proportional to the bytes on disk, which makes a fixed value a model-size cliff, not a timeout.

Measured in production: a 70 GB video checkpoint (longcat-video-avatar-1.5) on an NVIDIA Jetson Thor worker failed reproducibly.

POST /video   total 953.5s
rpc error: code = DeadlineExceeded desc = context deadline exceeded

Backend install + staging consumed ~11m of wall clock, then LoadModel got its 5m and expired. The load never had a chance, and the operator saw only a generic DeadlineExceeded with no hint that a config value was the cause. LOCALAI_NATS_MODEL_LOAD_TIMEOUT=30m unblocked the cluster — but requiring every operator to discover that after a confusing failure is the bug.

Why not just raise the constant

The cluster has to support checkpoints of 600 GB and beyond. A bigger fixed number:

  • still fails at some larger size (moves the cliff, doesn't remove it), and
  • makes a genuinely wedged small model hang for the full inflated duration before anyone notices — a real regression in failure latency.

Same defect shape as #11019, which replaced a fixed wall-clock staging margin with a progress-based deadline.

The fix

Derive the budget from the checkpoint's on-disk size:

budget = 5m + 20s per GiB,  capped at 6h
Checkpoint Derived budget
2 GB 5m40s
70 GB 28m20s
600 GB 3h25m

The per-GiB rate is deliberately pessimistic — it corresponds to reading weights at ~54 MB/s, below what any supported medium sustains — because the two errors are not symmetric: too long costs only failure latency on a load that was going to fail anyway, too short is a guaranteed false failure on a load that was perfectly healthy. The 5m floor is today's default, so small models keep today's fast-failure behaviour.

Where the size comes from

modelPayloadBytes sums the frontend's local model files over the same path set stageModelFiles uploads (dedup'd; directories walked). Not available for a backend handed a bare HuggingFace repo id — that path was never materialized locally and the worker fetches its own weights — in which case the budget falls back to today's plain 5m rather than guessing.

Override

An explicit LOCALAI_NATS_MODEL_LOAD_TIMEOUT wins outright, in both directions: a shorter override is honoured verbatim, so an operator who deliberately wants fast failure is not silently extended by the heuristic. Zero (unset) now means "derive"; core/application/distributed.go passes the raw value rather than ModelLoadTimeoutOrDefault() so that distinction survives.

Ceiling composition

ModelLoadCeilingFor needed a companion. The cold-load hold extends on staging progress, but LoadModel reports none — so once the last byte lands the hold expires a stall window later and would cancel a load still well inside its own budget (the #11026 shape: work being done with no progress signal). A 70 GB checkpoint's 28m20s budget under a 25m default ceiling is exactly that case.

scheduleAndLoad now calls extendLoadDeadline(ctx, loadTimeout + modelLoadStagingMargin) as it enters the load phase. ModelLoadCeilingFor keeps its signature and meaning as the hold's starting budget rather than its maximum; the 24h absolute cap still bounds everything.

Error message

An expired budget now reports the budget, the checkpoint size it was derived from, and the knob that overrides it, instead of a bare context deadline exceeded. That cost real debugging time on the night this was found.

Tests (TDD, behavioural red first)

core/config/model_load_budget_test.go and core/services/nodes/router_load_budget_test.go (Ginkgo/Gomega). Written against a stub returning the old fixed value, so they failed on behaviour, not on missing symbols:

[FAIL] ModelLoadTimeoutForSize [It] gives a 70 GB checkpoint materially more budget than a 2 GB one
[FAIL] ModelLoadTimeoutForSize [It] scales monotonically with size
[FAIL] ModelLoadTimeoutForSize [It] still gives a 600 GB checkpoint hours, not minutes
[FAIL] ModelLoadTimeoutForSize [It] never exceeds the absolute maximum, however absurd the size

[FAIL] size-derived remote LoadModel budget [It] gives a 70 GB checkpoint materially more than the 5m default
[FAIL] size-derived remote LoadModel budget [It] does not let the cold-load ceiling clip the derived budget
       > the cold-load hold cancelled a LoadModel that was still inside its own budget

The router specs drive a real Route() through to LoadModel and assert the deadline the gRPC client actually receives. The 70 GB and 600 GB fixtures are sparse files (Truncate), so they report the right size while occupying no blocks.

Verification

Command Exit
go build ./core/... ./pkg/... 0
go test ./core/services/nodes/ ./core/config/ 0
make lint 0 (0 issues.)

Docs updated in the same change (docs/content/features/distributed-mode.md) per the docs-with-code rule, plus the --model-load-timeout CLI help text.

Not verified: the 70 GB load itself cannot be reproduced locally — the specs prove the budget is granted and not clipped, not that a real 70 GB checkpoint completes within 28m20s on Jetson Thor hardware. The 20s/GiB rate is a deliberately conservative engineering choice, not a measured fit.

…t size

The gRPC deadline for the remote LoadModel call was a fixed 5m. It starts
only after the backend install and file staging have completed, so it
covers the worker's checkpoint read and pipeline init alone - work whose
duration is proportional to the bytes on disk. A fixed value is therefore
a model-size cliff, not a timeout.

Measured in production: a 70 GB video checkpoint (longcat-video-avatar-1.5)
on an NVIDIA Jetson Thor worker failed reproducibly with
"rpc error: code = DeadlineExceeded" after 953.5s of wall clock. Backend
install plus staging consumed ~11m, then LoadModel got its 5m and expired.
The load never had a chance, and the operator saw only a generic
DeadlineExceeded with no hint that a config value was the cause.

Raising the constant does not fix this. It moves the cliff to the next
larger model - the cluster has to support 600 GB checkpoints - and it makes
a genuinely wedged SMALL model hang for the whole inflated duration before
anyone notices, which is a real regression in failure latency.

So derive the budget from the checkpoint size instead:

    budget = 5m + 20s/GiB, capped at 6h

2 GiB -> 5m40s, 70 GiB -> 28m20s, 600 GiB -> 3h25m. The per-GiB rate is
deliberately pessimistic (~54 MB/s of weight read) because the errors are
not symmetric: too long costs only failure latency on a load that was going
to fail anyway, too short is a guaranteed false failure on a healthy load.

The size is measured from the frontend's local model files, over the same
path set stageModelFiles uploads. When those files are not present locally -
a backend handed a bare HuggingFace repo id fetches its own weights on the
worker - there is nothing to measure and the budget stays at today's 5m.

An explicit LOCALAI_NATS_MODEL_LOAD_TIMEOUT still wins outright, in both
directions: a shorter override is honoured, so an operator who wants fast
failure is not silently extended by the heuristic.

The cold-load hold needed widening to match. It extends on staging progress,
but LoadModel reports none, so once the last byte lands the hold expires a
stall window later and would cancel a load still well inside its own budget.
scheduleAndLoad now extends the hold by the load budget plus the staging
margin as it enters the load phase; ModelLoadCeilingFor stays the hold's
starting budget rather than its maximum.

Finally, a deadline that does expire now names the budget, the checkpoint
size it was derived from, and the knob that overrides it, instead of
surfacing a bare "context deadline exceeded".

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Code:claude-opus-4-8[1m] [Read] [Edit] [Bash]
@github-actions

Copy link
Copy Markdown
Contributor

yamllint Failed

Show Output
::group::gallery/nanbeige4.1.yaml
::warning file=gallery/nanbeige4.1.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/chatml.yaml
::warning file=gallery/chatml.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/lfm.yaml
::warning file=gallery/lfm.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/index.yaml
::error file=gallery/index.yaml,line=40295,col=9::40295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40299,col=9::40299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40301,col=9::40301:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40319,col=9::40319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40323,col=9::40323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40325,col=9::40325:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40343,col=9::40343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40347,col=9::40347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40349,col=9::40349:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40367,col=9::40367:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40371,col=9::40371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40373,col=9::40373:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40391,col=9::40391:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40393,col=9::40393:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40395,col=9::40395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40410,col=9::40410:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40412,col=9::40412:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40414,col=9::40414:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40429,col=9::40429:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40431,col=9::40431:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40433,col=9::40433:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40448,col=9::40448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40450,col=9::40450:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40452,col=9::40452:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40467,col=9::40467:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40469,col=9::40469:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40471,col=9::40471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40486,col=9::40486:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40488,col=9::40488:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40490,col=9::40490:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40505,col=9::40505:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40507,col=9::40507:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40509,col=9::40509:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40524,col=9::40524:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40526,col=9::40526:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40528,col=9::40528:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40544,col=9::40544:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40546,col=9::40546:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40551,col=9::40551:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40567,col=9::40567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40569,col=9::40569:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40574,col=9::40574:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40590,col=9::40590:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40592,col=9::40592:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40597,col=9::40597:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40613,col=9::40613:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40615,col=9::40615:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40620,col=9::40620:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40636,col=9::40636:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40638,col=9::40638:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40643,col=9::40643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40658,col=9::40658:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40660,col=9::40660:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40662,col=9::40662:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40677,col=9::40677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40679,col=9::40679:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40681,col=9::40681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40696,col=9::40696:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40698,col=9::40698:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40700,col=9::40700:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40715,col=9::40715:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40717,col=9::40717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40719,col=9::40719:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40734,col=9::40734:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40736,col=9::40736:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40738,col=9::40738:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40753,col=9::40753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40755,col=9::40755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40757,col=9::40757:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40772,col=9::40772:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40774,col=9::40774:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40776,col=9::40776:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40791,col=9::40791:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40793,col=9::40793:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40795,col=9::40795:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40810,col=9::40810:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40812,col=9::40812:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40814,col=9::40814:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40829,col=9::40829:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40831,col=9::40831:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40833,col=9::40833:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40848,col=9::40848:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40850,col=9::40850:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40852,col=9::40852:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40867,col=9::40867:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40869,col=9::40869:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40871,col=9::40871:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40886,col=9::40886:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40888,col=9::40888:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40890,col=9::40890:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40905,col=9::40905:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40907,col=9::40907:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40909,col=9::40909:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40924,col=9::40924:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40928,col=9::40928:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40930,col=9::40930:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40948,col=9::40948:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40952,col=9::40952:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40954,col=9::40954:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40972,col=9::40972:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40976,col=9::40976:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40978,col=9::40978:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=40996,col=9::40996:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41000,col=9::41000:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41002,col=9::41002:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41020,col=9::41020:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41022,col=9::41022:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41024,col=9::41024:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41039,col=9::41039:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41041,col=9::41041:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41043,col=9::41043:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41058,col=9::41058:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41060,col=9::41060:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41062,col=9::41062:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41077,col=9::41077:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41079,col=9::41079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41081,col=9::41081:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41096,col=9::41096:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41098,col=9::41098:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41100,col=9::41100:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41115,col=9::41115:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41117,col=9::41117:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41119,col=9::41119:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41134,col=9::41134:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41136,col=9::41136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41138,col=9::41138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41153,col=9::41153:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41155,col=9::41155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41157,col=9::41157:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41172,col=9::41172:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41174,col=9::41174:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41176,col=9::41176:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41191,col=9::41191:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41193,col=9::41193:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41195,col=9::41195:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41210,col=9::41210:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41212,col=9::41212:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41214,col=9::41214:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41229,col=9::41229:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41231,col=9::41231:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41233,col=9::41233:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41248,col=9::41248:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41250,col=9::41250:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41252,col=9::41252:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41267,col=9::41267:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41269,col=9::41269:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41271,col=9::41271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41286,col=9::41286:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41288,col=9::41288:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41290,col=9::41290:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41305,col=9::41305:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41307,col=9::41307:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41309,col=9::41309:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41324,col=9::41324:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41326,col=9::41326:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41328,col=9::41328:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41343,col=9::41343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41345,col=9::41345:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41347,col=9::41347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41362,col=9::41362:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41364,col=9::41364:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41366,col=9::41366:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41381,col=9::41381:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41383,col=9::41383:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41385,col=9::41385:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41400,col=9::41400:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41402,col=9::41402:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41404,col=9::41404:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41434,col=9::41434:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41436,col=9::41436:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41438,col=9::41438:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41453,col=9::41453:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41455,col=9::41455:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41457,col=9::41457:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41472,col=9::41472:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41474,col=9::41474:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41476,col=9::41476:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41491,col=9::41491:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41493,col=9::41493:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41495,col=9::41495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41510,col=9::41510:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41512,col=9::41512:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41514,col=9::41514:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41529,col=9::41529:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41531,col=9::41531:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41533,col=9::41533:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41557,col=9::41557:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41559,col=9::41559:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41561,col=9::41561:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41588,col=9::41588:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41590,col=9::41590:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41592,col=9::41592:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41619,col=9::41619:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41621,col=9::41621:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41623,col=9::41623:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41653,col=9::41653:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41657,col=9::41657:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41659,col=9::41659:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41677,col=9::41677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41681,col=9::41681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41683,col=9::41683:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41701,col=9::41701:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41705,col=9::41705:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41707,col=9::41707:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41725,col=9::41725:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41729,col=9::41729:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41731,col=9::41731:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41749,col=9::41749:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41753,col=9::41753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41755,col=9::41755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41779,col=9::41779:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41783,col=9::41783:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41785,col=9::41785:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41809,col=9::41809:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41813,col=9::41813:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41815,col=9::41815:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41842,col=9::41842:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41846,col=9::41846:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41848,col=9::41848:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41875,col=9::41875:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41877,col=9::41877:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41879,col=9::41879:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41894,col=9::41894:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41896,col=9::41896:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41898,col=9::41898:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41913,col=9::41913:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41915,col=9::41915:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41917,col=9::41917:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41932,col=9::41932:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41934,col=9::41934:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41936,col=9::41936:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41951,col=9::41951:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41953,col=9::41953:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41955,col=9::41955:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41976,col=9::41976:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41978,col=9::41978:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=41980,col=9::41980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42004,col=9::42004:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42006,col=9::42006:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42008,col=9::42008:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42032,col=9::42032:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42034,col=9::42034:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42036,col=9::42036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42060,col=9::42060:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42062,col=9::42062:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42064,col=9::42064:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42079,col=9::42079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42081,col=9::42081:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42083,col=9::42083:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42098,col=9::42098:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42100,col=9::42100:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42102,col=9::42102:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42117,col=9::42117:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42119,col=9::42119:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42121,col=9::42121:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42136,col=9::42136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42138,col=9::42138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42140,col=9::42140:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42155,col=9::42155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42159,col=9::42159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42161,col=9::42161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42179,col=9::42179:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42183,col=9::42183:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42185,col=9::42185:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42203,col=9::42203:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42207,col=9::42207:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42209,col=9::42209:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42227,col=9::42227:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42231,col=9::42231:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42233,col=9::42233:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42251,col=9::42251:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42255,col=9::42255:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42257,col=9::42257:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42275,col=9::42275:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42279,col=9::42279:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42281,col=9::42281:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42299,col=9::42299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42303,col=9::42303:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42305,col=9::42305:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42323,col=9::42323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42327,col=9::42327:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42329,col=9::42329:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42347,col=9::42347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42351,col=9::42351:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42353,col=9::42353:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42371,col=9::42371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42375,col=9::42375:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42377,col=9::42377:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42395,col=9::42395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42399,col=9::42399:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42401,col=9::42401:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42419,col=9::42419:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42423,col=9::42423:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42425,col=9::42425:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42443,col=9::42443:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42447,col=9::42447:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42449,col=9::42449:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42467,col=9::42467:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42471,col=9::42471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42473,col=9::42473:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42491,col=9::42491:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42495,col=9::42495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42497,col=9::42497:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42515,col=9::42515:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42519,col=9::42519:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42521,col=9::42521:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42539,col=9::42539:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42543,col=9::42543:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42545,col=9::42545:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42563,col=9::42563:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42565,col=9::42565:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42567,col=9::42567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42582,col=9::42582:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42584,col=9::42584:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42586,col=9::42586:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42601,col=9::42601:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42603,col=9::42603:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42605,col=9::42605:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42620,col=9::42620:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42622,col=9::42622:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42624,col=9::42624:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42639,col=9::42639:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42641,col=9::42641:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42643,col=9::42643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42658,col=9::42658:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42660,col=9::42660:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42662,col=9::42662:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42677,col=9::42677:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42679,col=9::42679:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42681,col=9::42681:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42696,col=9::42696:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42698,col=9::42698:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42700,col=9::42700:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42715,col=9::42715:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42717,col=9::42717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42719,col=9::42719:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42740,col=9::42740:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42742,col=9::42742:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42744,col=9::42744:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42765,col=9::42765:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42767,col=9::42767:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42769,col=9::42769:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42790,col=9::42790:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42794,col=9::42794:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42796,col=9::42796:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42814,col=9::42814:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42818,col=9::42818:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42820,col=9::42820:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42838,col=9::42838:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42842,col=9::42842:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42844,col=9::42844:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42862,col=9::42862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42866,col=9::42866:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42868,col=9::42868:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42886,col=9::42886:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42890,col=9::42890:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42892,col=9::42892:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42919,col=9::42919:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42923,col=9::42923:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42925,col=9::42925:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42943,col=9::42943:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42947,col=9::42947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42949,col=9::42949:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42967,col=9::42967:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42971,col=9::42971:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42973,col=9::42973:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42991,col=9::42991:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42995,col=9::42995:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=42997,col=9::42997:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43015,col=9::43015:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43017,col=9::43017:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43019,col=9::43019:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43034,col=9::43034:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43036,col=9::43036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43038,col=9::43038:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43053,col=9::43053:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43055,col=9::43055:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43057,col=9::43057:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43072,col=9::43072:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43074,col=9::43074:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43076,col=9::43076:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43091,col=9::43091:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43093,col=9::43093:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43095,col=9::43095:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43110,col=9::43110:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43112,col=9::43112:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43114,col=9::43114:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43129,col=9::43129:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43131,col=9::43131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43133,col=9::43133:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43148,col=9::43148:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43150,col=9::43150:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43152,col=9::43152:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43167,col=9::43167:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43169,col=9::43169:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43171,col=9::43171:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43186,col=9::43186:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43188,col=9::43188:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43190,col=9::43190:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43205,col=9::43205:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43207,col=9::43207:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43209,col=9::43209:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43224,col=9::43224:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43226,col=9::43226:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43228,col=9::43228:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43243,col=9::43243:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43247,col=9::43247:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43249,col=9::43249:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43267,col=9::43267:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43271,col=9::43271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43273,col=9::43273:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43291,col=9::43291:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43295,col=9::43295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43297,col=9::43297:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43315,col=9::43315:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43319,col=9::43319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43321,col=9::43321:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43354,col=9::43354:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43358,col=9::43358:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43360,col=9::43360:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43399,col=9::43399:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43403,col=9::43403:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43405,col=9::43405:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43444,col=9::43444:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43448,col=9::43448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43450,col=9::43450:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43495,col=9::43495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43499,col=9::43499:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43501,col=9::43501:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43519,col=9::43519:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43523,col=9::43523:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43525,col=9::43525:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43543,col=9::43543:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43547,col=9::43547:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43549,col=9::43549:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43567,col=9::43567:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43571,col=9::43571:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43573,col=9::43573:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43591,col=9::43591:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43595,col=9::43595:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43597,col=9::43597:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43615,col=9::43615:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43619,col=9::43619:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43621,col=9::43621:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43639,col=9::43639:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43643,col=9::43643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43645,col=9::43645:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43664,col=9::43664:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43666,col=9::43666:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43671,col=9::43671:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43687,col=9::43687:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43689,col=9::43689:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43694,col=9::43694:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43710,col=9::43710:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43712,col=9::43712:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43717,col=9::43717:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43733,col=9::43733:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43735,col=9::43735:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43740,col=9::43740:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43756,col=9::43756:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43758,col=9::43758:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43763,col=9::43763:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43778,col=9::43778:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43780,col=9::43780:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43782,col=9::43782:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43797,col=9::43797:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43799,col=9::43799:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43801,col=9::43801:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43816,col=9::43816:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43818,col=9::43818:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43820,col=9::43820:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43835,col=9::43835:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43837,col=9::43837:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43839,col=9::43839:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43855,col=9::43855:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43857,col=9::43857:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43862,col=9::43862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43878,col=9::43878:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43880,col=9::43880:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43885,col=9::43885:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43901,col=9::43901:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43903,col=9::43903:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43908,col=9::43908:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43924,col=9::43924:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43926,col=9::43926:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43931,col=9::43931:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43947,col=9::43947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43949,col=9::43949:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43954,col=9::43954:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43969,col=9::43969:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43973,col=9::43973:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43975,col=9::43975:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43993,col=9::43993:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43997,col=9::43997:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=43999,col=9::43999:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44017,col=9::44017:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44021,col=9::44021:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44023,col=9::44023:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44041,col=9::44041:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44045,col=9::44045:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44047,col=9::44047:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44065,col=9::44065:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44069,col=9::44069:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44071,col=9::44071:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44090,col=9::44090:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44092,col=9::44092:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44097,col=9::44097:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44113,col=9::44113:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44115,col=9::44115:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44120,col=9::44120:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44136,col=9::44136:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44138,col=9::44138:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44143,col=9::44143:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44159,col=9::44159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44161,col=9::44161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44166,col=9::44166:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44182,col=9::44182:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44184,col=9::44184:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44189,col=9::44189:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44204,col=9::44204:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44208,col=9::44208:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44210,col=9::44210:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44228,col=9::44228:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44232,col=9::44232:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44234,col=9::44234:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44252,col=9::44252:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44256,col=9::44256:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44258,col=9::44258:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44276,col=9::44276:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44280,col=9::44280:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44282,col=9::44282:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44300,col=9::44300:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44302,col=9::44302:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44304,col=9::44304:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44319,col=9::44319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44321,col=9::44321:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44323,col=9::44323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44338,col=9::44338:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44340,col=9::44340:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44342,col=9::44342:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44357,col=9::44357:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44359,col=9::44359:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44361,col=9::44361:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44376,col=9::44376:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44380,col=9::44380:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44382,col=9::44382:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44400,col=9::44400:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44404,col=9::44404:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44406,col=9::44406:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44424,col=9::44424:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44428,col=9::44428:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44430,col=9::44430:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44448,col=9::44448:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44452,col=9::44452:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44454,col=9::44454:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44473,col=9::44473:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44477,col=9::44477:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44482,col=9::44482:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44501,col=9::44501:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44505,col=9::44505:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44510,col=9::44510:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44529,col=9::44529:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44533,col=9::44533:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44538,col=9::44538:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44557,col=9::44557:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44561,col=9::44561:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44566,col=9::44566:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44584,col=9::44584:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44586,col=9::44586:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44588,col=9::44588:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44603,col=9::44603:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44605,col=9::44605:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44607,col=9::44607:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44622,col=9::44622:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44624,col=9::44624:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44626,col=9::44626:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44641,col=9::44641:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44643,col=9::44643:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44645,col=9::44645:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44661,col=9::44661:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44663,col=9::44663:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44668,col=9::44668:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44684,col=9::44684:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44686,col=9::44686:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44691,col=9::44691:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44707,col=9::44707:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44709,col=9::44709:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44714,col=9::44714:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44730,col=9::44730:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44732,col=9::44732:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44737,col=9::44737:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44753,col=9::44753:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44755,col=9::44755:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44760,col=9::44760:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44775,col=9::44775:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44777,col=9::44777:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44779,col=9::44779:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44794,col=9::44794:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44796,col=9::44796:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44798,col=9::44798:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44813,col=9::44813:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44815,col=9::44815:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44817,col=9::44817:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44832,col=9::44832:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44834,col=9::44834:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44836,col=9::44836:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44851,col=9::44851:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44855,col=9::44855:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44857,col=9::44857:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44875,col=9::44875:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44879,col=9::44879:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44881,col=9::44881:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44899,col=9::44899:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44903,col=9::44903:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44905,col=9::44905:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44923,col=9::44923:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44927,col=9::44927:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44929,col=9::44929:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44947,col=9::44947:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44951,col=9::44951:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44953,col=9::44953:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44980,col=9::44980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44984,col=9::44984:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=44986,col=9::44986:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45016,col=9::45016:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45020,col=9::45020:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45022,col=9::45022:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45055,col=9::45055:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45059,col=9::45059:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45061,col=9::45061:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45079,col=9::45079:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45083,col=9::45083:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45085,col=9::45085:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45103,col=9::45103:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45107,col=9::45107:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45109,col=9::45109:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45127,col=9::45127:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45131,col=9::45131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45133,col=9::45133:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45151,col=9::45151:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45155,col=9::45155:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45157,col=9::45157:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45175,col=9::45175:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45179,col=9::45179:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45181,col=9::45181:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45199,col=9::45199:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45203,col=9::45203:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45205,col=9::45205:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45223,col=9::45223:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45227,col=9::45227:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45229,col=9::45229:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45247,col=9::45247:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45251,col=9::45251:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45253,col=9::45253:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45271,col=9::45271:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45275,col=9::45275:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45277,col=9::45277:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45295,col=9::45295:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45299,col=9::45299:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45301,col=9::45301:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45319,col=9::45319:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45323,col=9::45323:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45325,col=9::45325:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45343,col=9::45343:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45347,col=9::45347:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45349,col=9::45349:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45367,col=9::45367:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45371,col=9::45371:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45373,col=9::45373:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45391,col=9::45391:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45395,col=9::45395:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45397,col=9::45397:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45415,col=9::45415:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45419,col=9::45419:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45421,col=9::45421:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45439,col=9::45439:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45443,col=9::45443:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45445,col=9::45445:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45465,col=9::45465:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45469,col=9::45469:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45471,col=9::45471:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45495,col=9::45495:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45497,col=9::45497:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45499,col=9::45499:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45520,col=9::45520:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45522,col=9::45522:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45524,col=9::45524:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45550,col=9::45550:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45552,col=9::45552:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45554,col=9::45554:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45576,col=9::45576:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45578,col=9::45578:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45580,col=9::45580:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45602,col=9::45602:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45606,col=9::45606:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45608,col=9::45608:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45632,col=9::45632:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45634,col=9::45634:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45636,col=9::45636:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45657,col=9::45657:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45659,col=9::45659:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45661,col=9::45661:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45682,col=9::45682:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45684,col=9::45684:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45686,col=9::45686:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45708,col=9::45708:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45710,col=9::45710:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45712,col=9::45712:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45739,col=9::45739:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45743,col=9::45743:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45745,col=9::45745:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45773,col=9::45773:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45775,col=9::45775:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45777,col=9::45777:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45802,col=9::45802:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45804,col=9::45804:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45806,col=9::45806:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45829,col=9::45829:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45833,col=9::45833:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45835,col=9::45835:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45862,col=9::45862:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45866,col=9::45866:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45868,col=9::45868:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45892,col=9::45892:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45894,col=9::45894:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45896,col=9::45896:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45916,col=9::45916:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45918,col=9::45918:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45920,col=9::45920:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45946,col=9::45946:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45950,col=9::45950:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45952,col=9::45952:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45980,col=9::45980:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45982,col=9::45982:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=45984,col=9::45984:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46005,col=9::46005:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46007,col=9::46007:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46009,col=9::46009:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46032,col=9::46032:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46036,col=9::46036:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46038,col=9::46038:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46069,col=9::46069:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46073,col=9::46073:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46075,col=9::46075:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46099,col=9::46099:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46101,col=9::46101:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46103,col=9::46103:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46125,col=9::46125:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46129,col=9::46129:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46131,col=9::46131:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46159,col=9::46159:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46161,col=9::46161:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46163,col=9::46163:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46185,col=9::46185:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46189,col=9::46189:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46191,col=9::46191:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46216,col=9::46216:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46220,col=9::46220:9 [indentation] wrong indentation: expected 6 but found 8
::error file=gallery/index.yaml,line=46222,col=9::46222:9 [indentation] wrong indentation: expected 6 but found 8
::endgroup::

::group::gallery/variant-exclusions.yaml
::warning file=gallery/variant-exclusions.yaml,line=32,col=1::32:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/moondream.yaml
::warning file=gallery/moondream.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/deepseek-r1.yaml
::warning file=gallery/deepseek-r1.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/gemma.yaml
::warning file=gallery/gemma.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/harmony.yaml
::warning file=gallery/harmony.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/smolvlm.yaml
::warning file=gallery/smolvlm.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/granite4.yaml
::warning file=gallery/granite4.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/openvino.yaml
::warning file=gallery/openvino.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

::group::gallery/qwen3.yaml
::warning file=gallery/qwen3.yaml,line=1,col=1::1:1 [document-start] missing document start "---"
::endgroup::

Workflow: Yamllint GitHub Actions, Action: __karancode_yamllint-github-action, Lint: gallery

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants