Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-lister
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-lister
Commits
1b2d6895
Commit
1b2d6895
authored
6 years ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
Use the named logger instead of the root logger in lister_base.py
parent
1d7d9b61
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!55
Fix the bitbucket lister;
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/lister/core/lister_base.py
+8
-8
8 additions, 8 deletions
swh/lister/core/lister_base.py
with
8 additions
and
8 deletions
swh/lister/core/lister_base.py
+
8
−
8
View file @
1b2d6895
...
...
@@ -200,11 +200,11 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
self
.
string_pattern_check
(
inner
,
lower
,
upper
)
except
Exception
as
e
:
logg
ing
.
error
(
str
(
e
)
+
'
: %s, %s, %s
'
%
((
'
inner=%s%s
'
%
(
type
(
inner
),
inner
)),
logg
er
.
error
(
str
(
e
)
+
'
: %s, %s, %s
'
%
((
'
inner=%s%s
'
%
(
type
(
inner
),
inner
)),
(
'
lower=%s%s
'
%
(
type
(
lower
),
lower
)),
(
'
upper=%s%s
'
%
(
type
(
upper
),
upper
)))
)
)
raise
return
ret
...
...
@@ -249,7 +249,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
def
__init__
(
self
,
override_config
=
None
):
self
.
backoff
=
self
.
INITIAL_BACKOFF
logg
ing
.
debug
(
'
Loading config from %s
'
%
self
.
CONFIG_BASE_FILENAME
)
logg
er
.
debug
(
'
Loading config from %s
'
%
self
.
CONFIG_BASE_FILENAME
)
self
.
config
=
self
.
parse_config_file
(
base_filename
=
self
.
CONFIG_BASE_FILENAME
,
additional_configs
=
[
self
.
ADDITIONAL_CONFIG
]
...
...
@@ -297,7 +297,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
r
=
self
.
transport_request
(
identifier
)
except
FetchError
:
# network-level connection error, try again
logg
ing
.
warning
(
logg
er
.
warning
(
'
connection error on %s: sleep for %d seconds
'
%
(
identifier
,
self
.
CONN_SLEEP
))
time
.
sleep
(
self
.
CONN_SLEEP
)
...
...
@@ -310,7 +310,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
# detect throttling
must_retry
,
delay
=
self
.
transport_quota_check
(
r
)
if
must_retry
:
logg
ing
.
warning
(
logg
er
.
warning
(
'
rate limited on %s: sleep for %f seconds
'
%
(
identifier
,
delay
))
time
.
sleep
(
delay
)
...
...
@@ -320,7 +320,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
retries_left
-=
1
if
not
retries_left
:
logg
ing
.
warning
(
logg
er
.
warning
(
'
giving up on %s: max retries exceeded
'
%
identifier
)
return
r
...
...
@@ -438,7 +438,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
re
.
escape
(
a
))
if
(
isinstance
(
b
,
str
)
and
(
re
.
match
(
a_pattern
,
b
)
is
None
)
or
isinstance
(
c
,
str
)
and
(
re
.
match
(
a_pattern
,
c
)
is
None
)):
logg
ing
.
debug
(
a_pattern
)
logg
er
.
debug
(
a_pattern
)
raise
TypeError
(
'
incomparable string patterns detected
'
)
def
inject_repo_data_into_db
(
self
,
models_list
):
...
...
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