• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

getdozer / dozer / 5794103074

pending completion
5794103074

push

github

web-flow
feat: implement live code reload experience.  (#1826)

* feat: initialize live apis

* feat: update live experience

* chore: fix errors

* chore: include sql

* chore: add error when into not provided

* chore: comment opening web

* chore: introduce into validation

* chore: introduce stop sql

619 of 619 new or added lines in 9 files covered. (100.0%)

45561 of 59739 relevant lines covered (76.27%)

49556.57 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/dozer-cli/src/live/errors.rs
1
use dozer_sql::pipeline::errors::PipelineError;
2
use dozer_types::errors::internal::BoxedError;
3
use dozer_types::thiserror;
4
use dozer_types::thiserror::Error;
5

6
use crate::errors::CliError;
7

8
#[derive(Error, Debug)]
×
9
pub enum LiveError {
10
    #[error("IO error: {0}")]
11
    Io(#[from] std::io::Error),
12
    #[error("Notify error: {0}")]
13
    Notify(#[from] notify::Error),
14
    #[error(transparent)]
15
    CliError(#[from] CliError),
16
    #[error(transparent)]
17
    BuildError(#[from] BoxedError),
18
    #[error("Dozer is not initialized")]
19
    NotInitialized,
20
    #[error("Error in initializing live server: {0}")]
21
    Transport(#[from] tonic::transport::Error),
22

23
    #[error(transparent)]
24
    PipelineError(#[from] PipelineError),
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc