-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from nyudlts/invenio-220-bigfile
Invenio 220 bigfile
- Loading branch information
Showing
14 changed files
with
929 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ htmlcov/ | |
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
screenshots/ | ||
|
||
# Translations | ||
*.mo | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
'entries', (3584, 1633) | ||
'__version__', (512, 15) | ||
'tz', (1024, 4) | ||
'utc_enabled', (1536, 4) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
'entries', (3584, 1633) | ||
'__version__', (512, 15) | ||
'tz', (1024, 4) | ||
'utc_enabled', (1536, 4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# check-services.sh | ||
#!/bin/bash | ||
|
||
# Function to check service status | ||
check_services() { | ||
echo "Checking services status..." | ||
status=$(invenio-cli services status) | ||
echo "$status" | ||
|
||
if [[ "$status" == *"redis: up and running."* && "$status" == *"postgresql: up and running."* && "$status" == *"search: up and running."* ]]; then | ||
echo "All services are up and running." | ||
return 0 | ||
else | ||
echo "Some services are not ready yet." | ||
return 1 | ||
fi | ||
} | ||
|
||
# Loop until all services are up | ||
until check_services; do | ||
echo "Waiting for all services to be fully operational..." | ||
sleep 10 # wait for 10s | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.