Skip to content

Commit

Permalink
more cases
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Jan 18, 2025
1 parent ad26311 commit 3c0fa53
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/libs/relay/conduit_relay_io_identify_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ identify_protocol(const std::string &path,
{
io_type = "conduit_base64_json";
}
else if(file_name_ext == "conduit_base64_yaml")
{
io_type = "conduit_base64_yaml";
}
else if(file_name_ext == "yaml")
{
io_type = "yaml";
Expand All @@ -110,6 +106,14 @@ identify_protocol(const std::string &path,
{
io_type = "yaml";
}
else if(file_name_ext == "conduit_yaml")
{
io_type = "conduit_yaml";
}
else if(file_name_ext == "conduit_base64_yaml")
{
io_type = "conduit_base64_yaml";
}
else if(file_name_ext == "bp" ||
file_name_ext == "adios")
{
Expand Down

0 comments on commit 3c0fa53

Please sign in to comment.