Skip to content
Snippets Groups Projects
Commit 847506a9 authored by Marco De Marco's avatar Marco De Marco
Browse files

Skip storage path and file path in metadata export

parent 8f4444b7
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,6 @@ message Response ...@@ -49,8 +49,6 @@ message Response
message Metadata message Metadata
{ {
//Metadata response state
enum State enum State
{ {
ACCEPTED = 0; ACCEPTED = 0;
...@@ -58,9 +56,6 @@ message Response ...@@ -58,9 +56,6 @@ message Response
} }
required State state = 1; required State state = 1;
//Metadata response status
required string status = 2; required string status = 2;
//Block of rows with same timestamp //Block of rows with same timestamp
......
...@@ -447,6 +447,14 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) ...@@ -447,6 +447,14 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
std::string name = props.get_name(); std::string name = props.get_name();
if(name.compare("storage_path")==0 || name.compare("file_path")==0)
{
#ifdef VERBOSE_DEBUG
INFO_STREAM << "ProtocolManager::fillRow() skipping " << name << endl;
#endif
continue;
}
if(m_it->get_indicator(i) == soci::i_null) if(m_it->get_indicator(i) == soci::i_null)
{ {
#ifdef VERBOSE_DEBUG #ifdef VERBOSE_DEBUG
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment