Questions tagged [timeouterror]

9 questions
1
vote
0 answers

Getting time out error in MongoDB 6.0.1 from quick start code

Here is the code bellow when I run it in mongohshell I am geting an time out error const MongoClient = require('mongodb').MongoClient; const assert = require('assert'); // Connection URL const url = 'mongodb://127.0.0.1:27017'; // Database…
1
vote
0 answers

"Navigation took more than 30000ms. Please increase the navigationTimeout" - working locally but issue in GitLab pipeline

Steps to reproduce the behavior: Open the browser (chrome) in headless mode await openBrowser({ headless: headless, args: ["--no-sandbox"] }); console.log('Browser opened.'); gauge.message('Browser opened.'); Goto…
0
votes
0 answers

I am facing an error in flask Timeout error every time I rum my code this message comes:

TimeoutError TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond and here is my…
0
votes
1 answer

Webscraping TimeoutError - browserType.launch: Timeout 180000ms exceeded. Why am I getting it despite using timeout?

Im using playwright for webscraping and all i sugegstions I could see was to use timeout of 0 to avoid a timeout error. It seemed to work at first but now I again got the timeout error. Am I doing something wrong or is there another way to solve…
learncode
  • 127
  • 6
0
votes
0 answers

Facing issue with Seaborn sample data set

I'm learning seaborn and when I try to use seaborn sample dataset through jupyter notebook. I'm getting an error. import seaborn as sns %matplotlib inline tips = sns.load_dataset('tips') Error: TimeoutError Traceback (most recent call last)File…
0
votes
0 answers

get_root_node function and RuntimeError: This event loop is already running

I need to get access to all the nodes in an opcua server (and their corresponding nodeIDs), it seems that the get_root_node function is the way to go, though the following script errors, i.e., RuntimeError: This event loop is already running.I'm…
0
votes
0 answers

Indexing to Elasticsearch locally with biosentvec TimeoutError

I am trying to index 300k observations locally with elastic search, been trying to crawl the biosentvec api after creating embeddings to index the entire data it keeps breaking. i get the following error. requests.exceptions.ConnectionError:…
cndze
  • 1
  • 2
0
votes
2 answers

Exception has occurred: TimeoutError exception: no description

I am specifically using python version 3.10 to run a websocket (or any long asyncio process) for a specified period of time which is covered in the python docs. The .wait_for() method looks like the correct solution. I run this code (from the…
D.L
  • 4,339
  • 5
  • 22
  • 45