I just tried all the solutions above but nothing works even with the HttpsProxyAgent
and I realised that my case, I use the corp proxy for both HTTP and HTTPS
so, I give it a try for HTTPProxyAgent
This time, it works. Not really understand why ~ Please advise me if you got something for this
My code for reference
// Proxy with HttpProxyAgent
const {HttpProxyAgent} = require('http-proxy-agent');
const proxyUrl = 'http://myUser:myPass@proxyIP:port';
const httpProxyAgent = new HttpProxyAgent(proxyUrl);
// Axios POST call with HttpProxyAgent
axios.post(url, body, {
httpAgent: httpProxyAgent,
proxy: false, // Proxy won't work if I don't force disabling default axios proxy ,
if you know why please advise me
});
P/s: I think might be the cause can come from using http or https in proxyUrl
I mean for HttpProxyAgent I should use http and HttpsProxyAgent I should use https
I've changed env on my Azure wordpress plan and I got this error "Error establishing a database connection" for my homepage website
I did restarting the webapp and pull reference values but I have same problem
UPDATE 2025-05-25 i found a solution with extracting the links of the pictures with JS and then using a batch script to download the screenshots with wget. You can find the solution here -> https://github.com/Moerderhoschi/mdhSteamScreenshotsDownloader
how did you fix the problem i'm using the drain code drain from logpai for parsing logs for anomaly detection and i'm stuck in the same problem .
raw input : 081109 203615 148 INFO dfs.DataNode$PacketResponder: PacketResponder 1 for block blk_38865049064139660 terminating
example of expected output :
LineId
Date
Time
Pid
Level
Component
Content
EventId
EventTemplate
ParameterList
1
081109
203615
148
INFO
dfs.DataNode$PacketResponder
PacketResponder 1 for block blk_38865049064139660 terminating
dc2c74b7
PacketResponder <> for block <> terminating
['1', 'blk_38865049064139660']
the error:
splitter = re.sub(" +", "\\\s+", splitters[k])
Processed 100.0% of log lines.
---------------------------------------------------------------------------
error Traceback (most recent call last)
<ipython-input-20-29577b162b2c> in <cell line: 0>()
21 log_format, indir=input_dir, outdir=output_dir, depth=depth, st=st, rex=regex
22 )
---> 23 parser.parse(log_file_all)
24
25 ## run on complete dataset
10 frames
/usr/lib/python3.11/re/_parser.py in parse_template(source, state)
1085 except KeyError:
1086 if c in ASCIILETTERS:
-> 1087 raise s.error('bad escape %s' % this, len(this)) from None
1088 lappend(this)
1089 else:
error: bad escape \s at position 0
Reasons:
Blacklisted phrase (1): how did you fix
RegEx Blacklisted phrase (1.5): i'm stuck
RegEx Blacklisted phrase (3): did you fix the problem
I’m not a coder just a person who recognizes, after a year mind u… I was hacked and I fought tooth and nail, was a victim of many I see here representing themselves as professionals but many where the tool to destroy my life. Backed by big business and gov … instead of saving my credit and car and relationship, and all police and "@Professionals “ to make me a T.I.! Destroyed my life for "the greater good” lol… I figured this all out through paper, no access to internet, alone , no computer background whatsoever put in hospitals to cover up…. But I kept and keep finding Turing and learning and finally have bags of papers and thousands of hours , lost 65 lbs and all contact to help or support f I could they where bought… SO WHO HERE WANTS TO STAND UP AND HELP!!! or is this just a game for people behind a monitor to use great skills to hurt the ones you never see?
Has any one recently encountered this? I have been stuck with this for so long and it is so frustrating.
I am right now doing this: Create a task, and execute onTaskDispatched at the schedule time which just logs in the consol for now.
I don't get the permission_denied error, so my service account has all t he permission. I only get INVALID_ARGUMENT
This is my code snippet:
// [NOTIFICATION TASK CREATION START]
const scheduledTime = notification.scheduledTime.toDate();
const now = new Date();
// Use Cloud Tasks
const client = await getCloudTasksClient();
const parent = client.queuePath(PROJECT_ID, LOCATION, QUEUE_NAME);
const url = `https://${LOCATION}-${PROJECT_ID}.cloudfunctions.net/processScheduledNotification`;
// Calculate schedule time
const date_diff_in_seconds = (scheduledTime.getTime() - now.getTime()) / 1000;
const MAX_SCHEDULE_LIMIT = 30 * 24 * 60 * 60; // 30 days in seconds
let scheduledSeconds;
// If scheduled time is in the past or very near future (< 5 mins), schedule for 30 seconds from now
// Otherwise, schedule for the calculated time, capped at MAX_SCHEDULE_LIMIT
if (date_diff_in_seconds <= 0 || date_diff_in_seconds < 300) {
scheduledSeconds = Math.floor(Date.now() / 1000) + 30;
} else {
scheduledSeconds = Math.floor(Math.min(date_diff_in_seconds, MAX_SCHEDULE_LIMIT) + Date.now() / 1000);
}
const payload = JSON.stringify({ notificationId: notification.id })
const body = Buffer.from(payload).toString('base64')
// Create the task payload - send only the notification ID
const task = {
httpRequest: {
httpMethod: 'POST',
url,
headers: {
'Content-Type': 'application/json',
},
// Send only the notification ID in the body
body:body,
oidcToken: {
serviceAccountEmail: `{PROJECT-NUMBER}[email protected]`, // Use PROJECT_ID variable
audience: url // To my service function below
}
},
scheduleTime: {
seconds: scheduledSeconds,
nanos: 0
}
};
const [response] = await client.createTask({ parent, task });
স্টক ওভারফ্লাওয়ার ডট কম হাই হ্যালো আম হুমায়ুন কাবের আমি স্টক মোবারক ফ্লও কন্ট্রোল করব গুগল ক্লাউড দিয়ে রিমোট গুগল ক্লাউড গুগল ক্রাউড কন্টোলার দিয়ে আমি স্টক ওভার স্লো কন্ট্রোল করবো google cloud আমার ডাটাবেজ রেকর্ড থাকবে google অটোমেটিক সিস্টেম সফটওয়্যার গুগল ক্লাউড সেটাপ করবে আমার সকল পেপারস google ক্লা d control এ আমি রাখতে চাই ধন্যবাদ
Can you explain why the use of URL fixes the issue? I guess it is because URL loads the file as an absolute path while the previous method would load the .env file from the incorrect directory when nested inside module files?
Did you ever get an answer or solution for this? I am having the same issue. I have a SQL task that the error doesn't propagate to the package it is in, but that package is called by another parent package that the error is still propagating to.
Reasons:
RegEx Blacklisted phrase (3): Did you ever get an answer
I am using flink to consume events from kafka and having a sliding window assigner for 1 hour window slides every 5 mins and then it has to write result in cassandra. I want to understand how this works internally ??
For example we have 10000 events and 5 taskmanagers and let's say each taskmanager gets 2000 event so there will be 5 entries in cassandra or Flink internally will aggregate all the outputs from 5 taskmanager and then create a single entry in cassandra.
Centellini,
Have you by any chance done any tests using the WriteMemory method?
Have you tried using the DownloadFile method?
Can you tell me what microcontroller are you using?
Regards
Reasons:
Blacklisted phrase (1): Regards
Whitelisted phrase (-1): Have you tried
RegEx Blacklisted phrase (2.5): Can you tell me what
do the production and test tables have the same data mass? Have the environment statistics been updated? Could you provide the production and test execution plan with the ddl of the created index and the number of rows in the table?
I'm trying a similar thing; I have added accounts.settings to the scopes, however I get an 'unauthorised' response. This is the response I get when sending the auth details to here: POST https://identity.xero.com/connect/token . I am able to access other enpoints, such as timesheets. Any help much appreciated.
This happens from time to time when the installation is actually successful. Can you check in Windows -> Services if the sql server is already running?
I also face the same problem on my windows 10 PC. I start using Git without knowing it's garbage collection system. I usually use git from git bash terminal, so i create commit push it to git hub create branch, rebase it and lot's of things. One day i open Git GUI provided with git bash. It says that i have 704 loos object need to compress it. If i say yes then it give error like "Deletion of directory '.git/objects/01' failed, should i try again?" if it try 100 times it still not able to delete it. Git GUI i bad in this situation, i need to restart the PC to stop it ( task manager can't close it). then inside git bash i call git gc (gc for garbage collection) it also give the same error except i am able to close the git bash program, which is good. Then i tried "git gc --prune=now --aggressive --force" command but nothing works. At the end i have to manually delete all the directory git gc failed to delete, which is very very painful. After completing all the deletion my .git/objects folder contain only 5 directory. This is how i solve it. If anyone have a better solution, please share it.
It turns out that this dictionary is an object from a library that is not coherent with what I am trying to acheive. I had to check the object browser before I realize this dictionary was from Selenium Basic instead of MS Scripting Runtime Library.
Alright, after a bunch more testing it seems that clamping the angle where the barrels can rotate up and down messes up the raycast hitpoint for some reason???? I don't understand why it makes the X value stop changing as soon as it hit something that wasn't terrain but when I removed the clamp it became normal.
I use
pip install flash_attn-2.7.0.post2%2Bcu124torch2.4.0cxx11abiFALSE-cp311-cp311-win_amd64.whl
I want to know how to call it correctly—should I use: from flash_attn import flash_attn_func
or from torch.nn.functional import scaled_dot_product_attention
Additionally, I only installed the .whl file and did not install ninja. Is this correct?
Same error message and PYTHONPATH has resource folder on it but no easy way to rename as folder is part of LibreOffice suite. Easier to simply unset PYTHONPATH as required.