Skip to content

Commit 4360ac6

Browse files
authored
Merge pull request #8 from LiteObject/feature/refactor_code
Fix message formatting in InfoController's Get method
2 parents 641bb18 + 88af622 commit 4360ac6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/code-review.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ jobs:
7979
echo "$RAW_RESPONSE" > response.json
8080
if: always()
8181

82-
- name: Upload Response as Artifact
83-
uses: actions/upload-artifact@v4
84-
with:
85-
name: llM-response
86-
path: response.json
87-
if: always()
82+
# - name: Upload Response as Artifact
83+
# uses: actions/upload-artifact@v4
84+
# with:
85+
# name: llM-response
86+
# path: response.json
87+
# 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)