You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is relatively minor, but may indicate a config inconsistency and impede debugging later...
The logger output below from the Django container shows an operation that times out 30 secs after the initial GET request.
There are two different timezones, last four digits in the square brackets: "0000" (UTC) and "0800" (UTC+8 == Perth). The first line omits the timezone, but it's +0800 like line two.
The date separators differ too, suggesting different locale settings (in different processes?).
If this is an inconsistency in a configurable environment or config setting (TZ, locale, etc), making it uniform will help with debugging (grep for a particular time/interval), automated log scanning, etc.
If it's hardcoded in the software doing the logging (ctime() versus asctime(gmtime()) there may be little we can do. Unsetting TZ in the environment will displayed times consistently, but as UTC, rather then a more intuitive local time.
The text was updated successfully, but these errors were encountered:
This is relatively minor, but may indicate a config inconsistency and impede debugging later...
The logger output below from the Django container shows an operation that times out 30 secs after the initial GET request.
There are two different timezones, last four digits in the square brackets: "0000" (UTC) and "0800" (UTC+8 == Perth). The first line omits the timezone, but it's +0800 like line two.
The date separators differ too, suggesting different locale settings (in different processes?).
If this is an inconsistency in a configurable environment or config setting (TZ, locale, etc), making it uniform will help with debugging (grep for a particular time/interval), automated log scanning, etc.
If it's hardcoded in the software doing the logging (ctime() versus asctime(gmtime()) there may be little we can do. Unsetting TZ in the environment will displayed times consistently, but as UTC, rather then a more intuitive local time.
The text was updated successfully, but these errors were encountered: