Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
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
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
core
tarantool
Commits
7a693370
Commit
7a693370
authored
12 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
Add better error logging to snapshot restart.
Produce a more verbose error message if failed to restart from a snapshot.
parent
390671fe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/exception.h
+2
-0
2 additions, 0 deletions
include/exception.h
mod/box/box.m
+8
-3
8 additions, 3 deletions
mod/box/box.m
src/exception.m
+12
-1
12 additions, 1 deletion
src/exception.m
with
22 additions
and
4 deletions
include/exception.h
+
2
−
0
View file @
7a693370
...
...
@@ -44,6 +44,7 @@
unsigned
line
;
}
+
(
id
)
alloc
;
-
(
void
)
log
;
@end
...
...
@@ -74,6 +75,7 @@
-
(
id
)
init
:
(
uint32_t
)
errcode_
,
...;
-
(
id
)
init
:
(
uint32_t
)
errcode_
args
:
(
va_list
)
ap
;
-
(
void
)
log
;
@end
...
...
This diff is collapsed.
Click to expand it.
mod/box/box.m
+
8
−
3
View file @
7a693370
...
...
@@ -286,8 +286,11 @@ static int
recover
_
row
(
struct
tbuf
*
t
)
{
/*
drop
wal
header
*/
if
(
tbuf
_
peek
(
t
,
sizeof
(
struct
header
_
v11
))
==
NULL
)
if
(
tbuf
_
peek
(
t
,
sizeof
(
struct
header
_
v11
))
==
NULL
)
{
say
_
error
(
"incorrect row header: expected %zd, got %zd bytes"
,
sizeof
(
struct
header
_
v11
)
,
(
size
_
t
)
t
->
size
)
;
return
-
1
;
}
@
try
{
u16
tag
=
read
_
u16
(
t
)
;
...
...
@@ -303,8 +306,10 @@ recover_row(struct tbuf *t)
say
_
error
(
"unknown row tag: %i"
,
(
int
)
tag
)
;
return
-
1
;
}
}
@
catch
(
id
e
)
{
}
@
catch
(
tnt
_
Exception
*
e
)
{
[
e
log
]
;
return
-
1
;
}
@
catch
(
id
e
)
{
return
-
1
;
}
...
...
This diff is collapsed.
Click to expand it.
src/exception.m
+
12
−
1
View file @
7a693370
...
...
@@ -49,6 +49,11 @@
}
return
e
;
}
-
(
void
)
log
{
[
self
subclassResponsibility
:
_cmd
];
}
@end
@implementation
SystemError
...
...
@@ -106,6 +111,12 @@
vsnprintf
(
errmsg
,
sizeof
(
errmsg
),
tnt_errcode_desc
(
errcode
),
ap
);
return
self
;
}
-
(
void
)
log
{
say_error
(
"%s at %s:%d, %s"
,
object_getClassName
(
self
),
file
,
line
,
errmsg
);
}
@end
...
...
@@ -116,7 +127,7 @@
va_start
(
ap
,
errcode_
);
[
super
init
:
errcode_
args
:
ap
];
say_error
(
"%s at %s:%d, %s"
,
object_getClassName
(
self
),
file
,
line
,
errmsg
)
;
[
self
log
]
;
return
self
;
}
...
...
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