Skip to main content

Questions tagged [worker]

In software, the term worker usually describes a long-running process being executed in a separate thread from an application's main thread of execution. Consider [tag:web-worker] for javascript.

0 votes
1 answer
15 views

How to pass a reference to Supabase instead of an object in a Cloudflare Worker

I created supabase client and pass reference to supabase into the fetch function; this is the code: ``` addEventListener(“fetch”, (event) => { const supabase = createClient(SUPABASE_URL, ...
John14's user avatar
  • 1
-1 votes
1 answer
26 views

cloudflare worker locally not starting problem while starting with cloudflare

PS D:\web\javascript\backend\hc\New folder\my-app> npm run dev > [email protected] dev > wrangler dev ⛅️ wrangler 3.65.0 ------------------- ⎔ Starting local server... ╭────────────────────────...
Rana Zaeem's user avatar
0 votes
0 answers
24 views

Creating a Logger for the electron application [closed]

I want to create a logger to handle all the logs inside the application. To offload logger tasks such as writing logs to the file, rotating the log files, and sending logs to different monitoring ...
Jithin Vijayan's user avatar
0 votes
0 answers
26 views

ISchedulerConfiguration Cron hour doesn't work

I currently have a C# worker console project to which I have to assign to several threads the facility to run at specific times. With IScheduledEventConfiguration and the Cron() method I have used the ...
Christian Niochet's user avatar
0 votes
1 answer
44 views

androidx.work.Worker.doWork() stopped working

androidx.work.Worker.doWork() stopped working 3-4 days ago. It has been working 2-3 years before that without any errors. Before the problem occurred the method was called every 30 minutes. But now it ...
ka3ak's user avatar
  • 2,721
0 votes
0 answers
8 views

Worker Permission Message on Mac

I created a worker project with C# with .Net Core 7.0 to run on macOs environments as bacground service. I launch this project with plist. Later, when I open any application, I encounter the following ...
Fatih Karameşe's user avatar
0 votes
0 answers
19 views

Can i use one shared-worker across sub domains?

I am having 4 react web applications, all of them use realtime data from webscockets. Currently in each of them i create a web worker and that handles all the websocket things, It's a stock broking ...
Harsh's user avatar
  • 1
-1 votes
0 answers
22 views

What to necessarily set up further for a dask cluster?

[...] imported all necessary stuff worker_kwargs = {'memory_limit': '6 GB', 'memory_target_fraction': 0.6, 'memory_spill_fraction': 0.7, 'memory_pause_fraction': 0.8, '...
Emilie's user avatar
  • 23
0 votes
0 answers
3 views

Can I run pymodbus simulator as a worker in digitalocean?

I use DigitalOcean's App Platform for many static sites and web services. Now I would like to run a pymodbus simulator using that App Platform. I'm not sure what I shouls start with? I think a worker ...
hoang21's user avatar
  • 133
0 votes
0 answers
14 views

SAML authentication handler contains unsafe inline script - Unable to redirect to Okta login page

We are using a nonce worker to avoid loading inline scripts, But SAML authentication handler contains a form that redirects to the OKTA login page. This form includes an unsafe inline script, which ...
Raj Kumar Samala's user avatar
0 votes
0 answers
16 views

Service worker Cache updates - To intercept the service worker request, until we click "OK" to pop-up, hash values shouldn't update into CacheStorage?

I have tried intercepting the service worker request, since it's updating the cache storage on navigation whenever there's new deployment or changes is available in application even the changes ...
kajol madhavan's user avatar
-2 votes
0 answers
43 views

How to further improve Node.js server application performance

My Question: What can I do to gain performance for my worker part, it doesn't necessarily need to be interpreted in my code but just in general? Would choosing a different language be in my situation ...
Schtraded's user avatar
1 vote
0 answers
51 views

node.js require returns a string

I created an Electron project with Vite. And I imported Electron from the file to be used in the Worker. No Electron object was returned, only the Electron installation path. How do I get an Electron ...
sandwich's user avatar
0 votes
0 answers
38 views

Airflow 2.9. bug ImportError: cannot import name '_run_inline_trigger' from 'airflow.models.dag'

I am facing some kind of bug in apache-airflow 2.9.2 This error ocurrs on random DAGs, on random tasks and very frequently, but not always (quite strange as the it is getting more frequently as the ...
Juraj Štofira's user avatar
0 votes
1 answer
21 views

Heroku Java Spring Boot web app project -> extend it to include one-off processes within it

We've an up and running Spring Boot java project working in Heroku using web dynos. Business requirement is to include background processes to sync some master data grabbed from external system by ...
Aitor Alonso's user avatar

15 30 50 per page
1
2 3 4 5
87