Skip to content

Commit 641bb18

Browse files
authored
Merge pull request #7 from LiteObject/feature/refactor_code
Fix message formatting in InfoController's Get method
2 parents ae605e3 + d57a5bd commit 641bb18

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/code-review.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ jobs:
8080
if: always()
8181

8282
- name: Upload Response as Artifact
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
with:
85-
name: ollama-response
85+
name: llM-response
8686
path: response.json
8787
if: always()

src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public InfoController(ILogger<InfoController> logger)
1717
public IActionResult Get()
1818
{
1919
// Log a message at the Information level
20-
var message = "Hello World from InfoController!";
20+
var message = "Hello World from InfoController!!!";
2121
_logger.LogInformation(message);
2222
return Ok(message);
2323
}

0 commit comments

Comments
 (0)