Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bsa_miner
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nazarf
bsa_miner
Commits
8dd35cac
Commit
8dd35cac
authored
Aug 21, 2023
by
nazarf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix check_active_list
parent
86b3708a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
miners.rake
lib/tasks/miners.rake
+8
-3
No files found.
lib/tasks/miners.rake
View file @
8dd35cac
...
@@ -26,17 +26,22 @@ namespace :miners do
...
@@ -26,17 +26,22 @@ namespace :miners do
message
.
send_with
(
bot
)
message
.
send_with
(
bot
)
end
end
task
check_active_list: :environment
do
task
check_active_list: :environment
do
url
=
'http://144.202.99.58:4243/active_list'
url
=
'http://144.202.99.58:4243/active_list'
response
=
HTTParty
.
get
(
url
)
response
_json
=
[]
response_json
=
JSON
.
parse
(
response
.
body
)
begin
response
=
HTTParty
.
get
(
url
)
response_json
=
JSON
.
parse
(
response
.
body
)
rescue
=>
e
puts
e
end
time
=
DateTime
.
now
time
=
DateTime
.
now
miners
=
Miner
.
all
miners
=
Miner
.
all
if
response_json
==
[]
if
response_json
==
[]
miners
.
update_all
(
status:
Miner
::
STATUSES
[
0
])
miners
.
update_all
(
status:
Miner
::
STATUSES
[
0
])
return
end
end
miners
.
each
do
|
miner
|
miners
.
each
do
|
miner
|
...
...
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