-
Notifications
You must be signed in to change notification settings - Fork 320
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
chore: fix replay bugs #2653
chore: fix replay bugs #2653
Conversation
Codecov ReportBase: 43.74% // Head: 43.69% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #2653 +/- ##
==========================================
- Coverage 43.74% 43.69% -0.06%
==========================================
Files 187 191 +4
Lines 39993 40483 +490
==========================================
+ Hits 17494 17688 +194
- Misses 21403 21690 +287
- Partials 1096 1105 +9
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
…erver into chore.replayBugFixes
@@ -23,7 +23,7 @@ func loadConfig() { | |||
} | |||
|
|||
func initFileManager() (filemanager.FileManager, string, error) { | |||
bucket := strings.TrimSpace(config.GetString("JOBS_BACKUP_BUCKET", "")) | |||
bucket := strings.TrimSpace(config.GetString("JOBS_REPLAY_BACKUP_BUCKET", "")) |
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.
@cisse21 Is it OK to just change this configuration setting? Doesn't it have to be backward compatible or something?
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.
Replay is done on demand. These envs are not served anywhere. So, it is okay for now.
Description
Fixing replay bugs that occurred while replaying for recroom
Notion Ticket
Notion Link
Security