Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
ebulk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
ebulk
Commits
b6c537b3
Commit
b6c537b3
authored
Jul 12, 2019
by
Roque
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix: credentials were requested more than one time
parent
c31993df
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
29 deletions
+46
-29
ebulk-data/embulk-wendelin-dataset-tool/lib/embulk/dataset_utils.rb
.../embulk-wendelin-dataset-tool/lib/embulk/dataset_utils.rb
+35
-29
ebulk-data/embulk-wendelin-dataset-tool/lib/embulk/filelogger.rb
...ata/embulk-wendelin-dataset-tool/lib/embulk/filelogger.rb
+11
-0
No files found.
ebulk-data/embulk-wendelin-dataset-tool/lib/embulk/dataset_utils.rb
View file @
b6c537b3
...
@@ -132,6 +132,10 @@ class DatasetUtils
...
@@ -132,6 +132,10 @@ class DatasetUtils
end
end
def
getCredentials
(
tool_dir
)
def
getCredentials
(
tool_dir
)
# using logger because it's a singleton
# TODO: refactor datase_utils to be a singleton and keep credentials in it
user
,
password
=
@logger
.
getCredentials
()
if
user
.
nil?
credential_path
=
appendSlashTo
(
tool_dir
)
+
CREDENTIALS_FILE
credential_path
=
appendSlashTo
(
tool_dir
)
+
CREDENTIALS_FILE
if
File
.
exist?
(
credential_path
)
if
File
.
exist?
(
credential_path
)
credentials
=
File
.
open
(
credential_path
).
read
.
chomp
.
split
(
RECORD_SEPARATOR
)
credentials
=
File
.
open
(
credential_path
).
read
.
chomp
.
split
(
RECORD_SEPARATOR
)
...
@@ -162,6 +166,8 @@ class DatasetUtils
...
@@ -162,6 +166,8 @@ class DatasetUtils
puts
puts
sleep
1
sleep
1
end
end
@logger
.
setCredentials
(
user
,
password
)
end
return
user
,
password
return
user
,
password
end
end
...
...
ebulk-data/embulk-wendelin-dataset-tool/lib/embulk/filelogger.rb
View file @
b6c537b3
...
@@ -11,6 +11,8 @@ class LogManager
...
@@ -11,6 +11,8 @@ class LogManager
def
initialize
()
def
initialize
()
now
=
Time
.
now
.
strftime
(
"%d-%m-%Y"
)
now
=
Time
.
now
.
strftime
(
"%d-%m-%Y"
)
@filename
=
"
#{
now
.
to_s
}
.log"
@filename
=
"
#{
now
.
to_s
}
.log"
@user
@password
end
end
def
setFilename
(
tool_dir
,
prefix
)
def
setFilename
(
tool_dir
,
prefix
)
...
@@ -22,6 +24,15 @@ class LogManager
...
@@ -22,6 +24,15 @@ class LogManager
File
.
open
(
@path
,
'a'
)
{
|
file
|
file
.
puts
"------------------------------------------------"
+
"
\r\n
"
}
File
.
open
(
@path
,
'a'
)
{
|
file
|
file
.
puts
"------------------------------------------------"
+
"
\r\n
"
}
end
end
def
setCredentials
(
user
,
password
)
@user
=
user
@password
=
password
end
def
getCredentials
()
return
@user
,
@password
end
def
getLogPath
()
def
getLogPath
()
return
@path
return
@path
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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