Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
metadata_exporter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IA2
metadata_exporter
Commits
847506a9
Commit
847506a9
authored
Dec 11, 2013
by
Marco De Marco
Browse files
Options
Downloads
Patches
Plain Diff
Skip storage path and file path in metadata export
parent
8f4444b7
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
proto/Response.proto
+0
-5
0 additions, 5 deletions
proto/Response.proto
src/ProtocolManager.cpp
+8
-0
8 additions, 0 deletions
src/ProtocolManager.cpp
with
8 additions
and
5 deletions
proto/Response.proto
+
0
−
5
View file @
847506a9
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/ProtocolManager.cpp
+
8
−
0
View file @
847506a9
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment