Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
bc62a705
Commit
bc62a705
authored
8 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
All enums in eos_messages.proto now start with 'NONE = 0;'
parent
8219917c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
eos/messages/eos_messages.proto
+5
-5
5 additions, 5 deletions
eos/messages/eos_messages.proto
with
5 additions
and
5 deletions
eos/messages/eos_messages.proto
+
5
−
5
View file @
bc62a705
...
...
@@ -60,7 +60,7 @@ message Workflow {
CLOSEW
=
4
;
DELETE
=
5
;
PREPARE
=
6
;}
EventType
event
=
1
;
//< event
, default value is NONE
EventType
event
=
1
;
//< event
string
queue
=
2
;
//< queue
string
wfname
=
3
;
//< workflow
string
vpath
=
4
;
//< vpath
...
...
@@ -77,14 +77,14 @@ message Notification {
}
message
Xattr
{
enum
Operation
{
GET
=
0
;
ADD
=
1
;
SET
=
2
;
DELETE
=
3
;}
enum
Operation
{
NONE
=
0
;
GET
=
1
;
ADD
=
2
;
SET
=
3
;
DELETE
=
4
;}
fixed64
fid
=
1
;
//< file id
map
<
string
,
string
>
xattrs
=
2
;
//< xattribute map
Operation
op
=
3
;
//< operation to execute for this xattr map
}
message
Tapereplica
{
enum
Status
{
OFFTAPE
=
0
;
ONTAPE
=
1
;
ONTAPESAVE
=
2
;}
enum
Status
{
NONE
=
0
;
OFFTAPE
=
1
;
ONTAPE
=
2
;
ONTAPESAVE
=
3
;}
fixed64
fid
=
1
;
//< file id
Status
status
=
2
;
//< state state for file ID
fixed64
size
=
3
;
//< File size as recorded on tape for cross check
...
...
@@ -92,7 +92,7 @@ message Tapereplica {
}
message
Error
{
enum
Audience
{
EOSLOG
=
0
;
ENDUSER
=
1
;}
enum
Audience
{
NONE
=
0
;
EOSLOG
=
1
;
ENDUSER
=
2
;}
Audience
audience
=
1
;
//< The intended audience of the error message
fixed64
code
=
2
;
//< Zero means success, non-zero means error
string
message
=
3
;
//< An empty if success, else an error message
...
...
@@ -119,7 +119,7 @@ message Error {
// metadata.
message
Wrapper
{
enum
Type
{
NONE
=
0
;
ERROR
=
1
;
NOTIFICATION
=
2
;
XATTR
=
3
;
TAPEREPLICA
=
4
;}
Type
type
=
1
;
//< Default value is NONE
Type
type
=
1
;
Error
error
=
2
;
Notification
notification
=
3
;
Xattr
xattr
=
4
;
...
...
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