Skip to content

Commit

Permalink
Fixing Tests and Reverting package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
samuchila committed Feb 13, 2024
1 parent 19d1c4b commit a1b6dda
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/src/apps/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ Log msg 3 of service-a of app master
assert_eq!(
log_stream.next().await.unwrap().unwrap(),
(
DateTime::parse_from_rfc3339("2019-07-18T07:25:00.000000000Z").unwrap(),
DateTime::parse_from_rfc3339("2019-07-18T07:30:00.000000000Z").unwrap(),
format!(
"Log msg 2 of {} of app {app_name}\n",
service.service_name()
Expand All @@ -767,7 +767,7 @@ Log msg 3 of service-a of app master
assert_eq!(
log_stream.next().await.unwrap().unwrap(),
(
DateTime::parse_from_rfc3339("2019-07-18T07:25:00.000000000Z").unwrap(),
DateTime::parse_from_rfc3339("2019-07-18T07:35:00.000000000Z").unwrap(),
format!(
"Log msg 3 of {} of app {app_name}\n",
service.service_name()
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"current-script-polyfill": "^1.0.0",
"esprima": "^4.0.1",
"jquery": "^3.6.0",
"moment": "^2.30.1",
"moment": "^2.29.1",
"parse-link-header": "^2.0.0",
"popper.js": "^1.16.1",
"swagger-ui": "^4.18.2",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/LogsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
},
methods: {
fetchLogs(newRequestUri) {
if (newRequestUri == null && requestUri != null) {
if (newRequestUri == null || requestUri != null) {
return;
}
this.logLines = [];
Expand Down

0 comments on commit a1b6dda

Please sign in to comment.