diff --git a/pgx-examples/bgworker/src/lib.rs b/pgx-examples/bgworker/src/lib.rs index e9c547146..cf8b93ff8 100644 --- a/pgx-examples/bgworker/src/lib.rs +++ b/pgx-examples/bgworker/src/lib.rs @@ -44,7 +44,7 @@ pub extern "C" fn background_worker_main(arg: pg_sys::Datum) { log!( "Hello from inside the {} BGWorker! Argument value={}", BackgroundWorker::get_name(), - arg.unwrap(); + arg.unwrap() ); // wake up every 10s or if we received a SIGTERM