-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature limit resources #561
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
4b857f9
Increased the version of the core library and updated the code accord…
MichaelRoeder feced4c
Increased commons-io version.
MichaelRoeder 3ad6b20
Implemented the hardware constraint processing. Fixed several compile…
MichaelRoeder f082866
Implemented the hardware constraint processing. Fixed several compile…
MichaelRoeder e3d7034
Implemented the processing of hardware constraints. Fixed some smalle…
MichaelRoeder 62c9346
Merged changes from develop.
MichaelRoeder 8c97198
Adapted file persmissions.
MichaelRoeder 37cfda3
Fixed issues with the hardware constraints.
MichaelRoeder 5402818
Merge branch 'develop' into feature-limit-resources
MichaelRoeder 98c9d66
Moved the web.xml used in cases where no authentication is needed int…
MichaelRoeder c9da48f
Added the missing configure-auth script.
MichaelRoeder 2823711
Fixed pom version problem.
MichaelRoeder d3cb4ba
Removed user information that is not needed for retrieving the licens…
MichaelRoeder 18614df
Fixed pom version problem.
MichaelRoeder 627b58c
Added the handling of error reports. Errors are added to the result m…
MichaelRoeder 1eb5c71
Included the new blocking rabbitmq receiver in the storage service.
MichaelRoeder 7cbb4e7
Included the new blocking rabbitmq receiver in the analysis component.
MichaelRoeder 6803d50
Merge branch 'feature/build-in-docker' into feature-limit-resources
MichaelRoeder 5d5eae9
Updated dev docker-compose.
MichaelRoeder 861895f
Fixed problems with the queue-based consumer.
MichaelRoeder 2e630e5
Finished implementation of error report handling.
MichaelRoeder 1c5c314
Removed the errorDetails property since it is not used anymore.
MichaelRoeder 25ab24d
Prepared release of 2.0.17.
MichaelRoeder f173e7f
Removed faulty file.
MichaelRoeder ff5d0c1
Applied changes according to review.
MichaelRoeder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
# Runs the GUI serverbackend of the HOBBIT Platform. | ||
USE_KEYCLOAK="${USE_UI_AUTH:-true}" | ||
|
||
if [ "${USE_KEYCLOAK}" == "false" ]; then | ||
echo "Replacing web.xml with web-without-ui-auth.xml" | ||
cp /var/lib/jetty/webapps/ROOT/WEB-INF/web-without-ui-auth.xml /var/lib/jetty/webapps/ROOT/WEB-INF/web.xml | ||
fi | ||
|
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did this cause any problems? Having variables here by default makes it possible to just add
.env
file without making any additional changes.