File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -271,8 +271,6 @@ fn panic_handler(message: Box<dyn Any + Send + 'static>) -> Response<Body> {
271
271
272
272
fn print_banner ( ) {
273
273
let mut stdout = io:: stdout ( ) . lock ( ) ;
274
-
275
- let _ = writeln ! ( stdout) ;
276
274
let _ = writeln ! (
277
275
stdout,
278
276
"» Booting up {} v{}, compiled with Rust v{}" ,
Original file line number Diff line number Diff line change @@ -131,9 +131,10 @@ impl Config {
131
131
cfg. merge ( file) ;
132
132
if cfg. uploader_key . is_empty ( ) {
133
133
let key = __generated_uploader_key ( ) ;
134
- eprintln ! ( "[ume WARN] Missing a uploader key for encoding JWT tokens, but I have generated one for you: {key}\n
135
- Set this in the `UME_UPLOADER_KEY` environment variable when loading the server or in the `uploader_key` in your `config.hcl` file.\n
136
- If any other key replaces this, then all JWT tokens will no longer be able to be verified, so it is recommended to keep this safe somewhere" ) ;
134
+ eprintln ! ( "[ume WARN] Missing a uploader key for authentication! I have generated one for you:\n
135
+ \t \t {key}\n
136
+ Set this in the `UME_UPLOADER_KEY` environment variable when loading the server or in the `uploader_key` in your `config.hcl` file.
137
+ If any other key replaces this, then it'll no longer be verified. It is recommended to keep this safe somewhere" ) ;
137
138
138
139
cfg. uploader_key = key;
139
140
}
You can’t perform that action at this time.
0 commit comments