Skip to content

Commit

Permalink
Better log info and downgrades the http version of the testbeds to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
CesarCoelho committed Oct 14, 2024
1 parent 518e606 commit a2a0e69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testbeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '8'
distribution: 'adopt'
- name: Restore Maven local repository from cache
uses: actions/cache@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ public void init() throws MALException {
*/
protected IHttpServer createServer() throws HttpApiImplException {
try {
RLOGGER.log(Level.INFO, "Dynamicaly instantiating class with name: " + abstractServerImpl);
RLOGGER.log(Level.INFO, "Dynamicaly instantiating class with name: {0}", abstractServerImpl);
IHttpServer serverImpl = (IHttpServer) Class.forName(abstractServerImpl).newInstance();
return serverImpl;
} catch (ClassNotFoundException ex) {
Expand Down

0 comments on commit a2a0e69

Please sign in to comment.