Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Give warning if using CSV or SOMEIP Provider
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Feb 7, 2024
1 parent e83a43e commit dc66e45
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions csv_provider/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ async def main():
root_path = None
if isinstance(numeric_value, int):
logging.basicConfig(encoding='utf-8', level=numeric_value)

logging.warning("CSV Provider has migrated to a new repository")
logging.info("Consider using CSV provider in https://github.com/eclipse-kuksa/kuksa-csv-provider instead")

try:
async with VSSClient(args.address, args.port, root_certificates=root_path,
tls_server_name=args.tls_server_name) as client:
Expand Down
3 changes: 3 additions & 0 deletions someip2val/src/someip_feeder/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@ int main(int argc, char** argv) {
std::string arg_token("--token");
std::string arg_help("--help");

std::cout << "WARNING: SOMEIP Provider has migrated to a new repository" << std::endl;
std::cout << "INFO: Consider using SOMEIP provider in https://github.com/eclipse-kuksa/kuksa-someip-provider instead" << std::endl;

// FIXME: update someip settings from command line!
for (int i = 1; i < argc; i++) {
std::string arg_val = argv[i];
Expand Down

0 comments on commit dc66e45

Please sign in to comment.