Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Domain Data Management Services
Seismic
Seismic DMS Suite
seismic-dms-service
Commits
e3d5324d
Commit
e3d5324d
authored
Aug 09, 2022
by
Yan Sushchynski (EPAM)
Browse files
fix: linters
parent
c802dabf
Pipeline
#128539
failed with stages
in 13 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
app/sdms/src/cloud/providers/anthos/logger.ts
View file @
e3d5324d
...
...
@@ -21,7 +21,7 @@ export class AnthosLogger extends AbstractLogger {
public
info
(
data
:
any
):
void
{
// tslint:disable-next-line:no-logger
console
.
info
(
data
);
console
.
log
(
data
);
}
public
debug
(
data
:
any
):
void
{
...
...
app/sdms/src/cloud/providers/anthos/storage.ts
View file @
e3d5324d
...
...
@@ -263,7 +263,7 @@ export class MinIOStorage extends AbstractStorage {
const
listCommand
=
new
ListObjectsCommand
(
params
);
const
listedObjects
=
await
this
.
s3
.
send
(
listCommand
);
if
(
typeof
(
listedObjects
.
Contents
)
===
'
undefined
'
||
listedObjects
.
Contents
.
length
===
0
)
if
(
typeof
(
listedObjects
.
Contents
)
===
'
undefined
'
||
listedObjects
.
Contents
.
length
===
0
)
return
;
const
deleteParams
=
{
...
...
David Diederich
@divido
mentioned in commit
654baa86
·
Aug 17, 2022
mentioned in commit
654baa86
mentioned in commit 654baa86444bb724f6dd7882e4e66438971004ba
Toggle commit list
Chad Leong
@chad
mentioned in merge request
!489 (merged)
·
Aug 17, 2022
mentioned in merge request
!489 (merged)
mentioned in merge request !489
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment