Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jixiang Jiang committed Mar 17, 2022
1 parent 5890d54 commit ffef2ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: rustup show

- name: Install libgcc
run: sudo apt-get install -y libgcc1 && sudo ldconfig
run: sudo ldconfig

# We require a minimal Go version of 1.17.
- uses: actions/setup-go@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,17 @@ impl AirbyteSourceInterceptor {
supported_sync_modes: vec![resource.sync_mode.clone()],
default_cursor_field: None,
source_defined_cursor: None,
source_defined_primary_key: None, // ???
source_defined_primary_key: None,
},
projections: projections,
});
}
}

if let Err(e) = catalog.validate() {
raise_custom_error(&format!("invalid config_catalog: {:?}", e))?
}

serde_json::to_writer(File::create(catalog_file_path)?, &catalog)?
}

Expand Down

0 comments on commit ffef2ac

Please sign in to comment.