Correct, you cannot in fact delete only one event, but can truncate the stream at that position. After issuing your delete, you must scavenge the database to see the effects of the truncation. Have you performed a scavenge operation after the delete?
I implemented the above solution using useLazyQuery of rtk query. I am facing an issue where when I invalidate tag for this api on create/update/delete to get updated data in the table. The api is getting called but it's not updating the data in table as it is not being called through serverSideDataSource.
Does anyone know how to solve this?
Reasons:
Blacklisted phrase (1): how to solve
RegEx Blacklisted phrase (2): Does anyone know
RegEx Blacklisted phrase (1.5): how to solve this?
If you are a beginner, could it just be a simple effect of inserting and deleting multiple times? That is, the number of a record that has been deleted is not reused. So if the last ID is 9, the next one will be 10, but if you delete ID 10, the next one will be 11 and not 10 again, and so on. Does that make sense?
Thanks. Image viewers may interpret the pixels as squares even though they are rectangular, which is why they appear stretched, while video viewers automatically apply the stretch and the video displays correctly. My question is the following: I have this video of dimensions 1440x1080 and extracting the video frames what happens is that I open the image it appears deformed, but I don't know if this is just a display problem or not. What I would like to understand is if it is possible to create a dataset of images directly with the video frames as they are therefore with dimensions 1440x1080 (which appear a little stretched and deformed when opening the image) or is this wrong and must necessarily be resized to 1920x1440?
Facing same issue, Did you find any solution?
I have Python FastAPI application in that I have used .env and I know it's not recommended or best practise to push .env file. If you the solution can you guide me?
Reasons:
Blacklisted phrase (1): guide me
Blacklisted phrase (1.5): any solution
RegEx Blacklisted phrase (2.5): can you guide me
RegEx Blacklisted phrase (3): Did you find any solution
I have the same issue and after research i didn't find any way to do this. The content shadow-root of the autocomplete element is by default set to close so we can't access to input to change placeholder.
Six months ago, I installed a VM in Azure running an MSSQL server. The VM is located in a VNET and does not have a public IP. To access the SQL Server via the Internet, I first installed an external Azure Load Balancer and set up a NAT rule that forwards traffic from the public IP of the LB via port 3378 to port 1433 of the VM. In the NSG, I enabled port 1433 in the VNET (they are all open anyway) and allowed port 3378 to the internal IP of the VM from the Internet.
The port 1433 on VM is open and a connection from another vm in same vnet can be established.
This worked, but then suddenly it stopped working. I probably changed something and can't find the error.
I have reproduced the problem. I got a 403 response when I didn't send the UserInfo JSON data to the /save endpoint. When I send the JSON data correctly, I receive a 200 response. I've used the securityFilterChain like yours.
Can you share your UserInfo class? I think there's missing a setter method or appropriate constructor.
Reasons:
RegEx Blacklisted phrase (2.5): Can you share your
We have similar case, we need history of changes, but after specific period of time (e.g. 6 years), we want to remove or anonymize personal data (according to european General Data Protection Regulation, GDPR). Any ideas?
Horably great to find people struggling with the same problems. Did you ever find a fix for this?
I'm running a CMS Streaming and when chrome stops to ask if I want to continue it kills my streaming. And yes, Auto Refresh Plus does not offer any option to supress that pop-up.
Reasons:
RegEx Blacklisted phrase (3): Did you ever find a fix
Solution provided by @Phil in the comment section. Update base config as well as router's basename with my app name, then update Tomcat config as mentioned in this post
Update, I have beemn able to install the plugin, seems to be that my OBS app was not installed properly since it was not located in applications folder, now that I have successfully installed, I don't see the plugin available in trhe "tools" menu, can somebody point me in the right direction since I dont have a clue about what can be happening.
I need some help on this one too. Trying to work on large file issues seems to hit the same problem: how to manage the internal buffering. Thanks for your references to UnmanagedMemoryStream; but MSFT still doesn't let you easily solve that core issue.
FileStream's loading options will reveal this problem very fast. When loading a large file, you'll be forced into MemoryMappedFile, or you won't have a solution at all (!!!)
Reading a 90MB text file loads approx 300MB of (managed) memory; and locks my rendering thread while I have a background worker trying to read these 90MB sequentially. It would otherwise be that you don't need to do that pre-loading. You may just be able to read each line with some native call. MSFT doesn't like this because they've tried too hard to manage everything on their backend - now with Task (TPL) thread support. So, there's "too much overhead"; but maybe not in each situation if we already know how to manage our access to large files, or handle threading. We can space out native calls, even, if you'd let us have access to the native file stream.
My current implementation uses and UnmanagedMemoryStream - which wants a SafeBuffer, or native pointer. However, there is no (native) call that I've found to ask for a portion of the file - nor is there a simple call to get data from a SafeFileHandle. So, I'm stuck parsing MSFT's FileStream code trying to figure out when it's safe to do.
I know this is an old post but did you ever resolve this issue? I'm encountering the same issue with a specific endpoint when a get request is made. I was able to determine the request is never being sent so I think it's related to the UnityWebRequest class specifically. Here's my post in case anyone is interested:
Hoy 10 de junio de 2025 me aparecio ese error sin haber cambiado algo del proyecto, lo que hice fue actualizar la versión la springboot de la 3.4.5 a la 3.5.0 y se solucionó.
El error era:
org.hibernate.bytecode.internal.bytebuddy.BytecodeProviderImpl Unable to get public no-arg constructor
I have the same problem when importing HuggingFaceEmmbeddings as well as OllamaEmbeddings:
ImportError: cannot import name 'convert_to_openai_image_block' from 'langchain_core.messages' (E:\U-DEVTOOLS\Python-3.11.9\Lib\site-packages\langchain_core\messages\__init__.py)
from langchain_core.messages.content_blocks import (
convert_to_openai_data_block,
convert_to_openai_image_block,
is_data_content_block,
)
I also discovered another Messages.py in \Python-3.11.9\Lib\site-packages\langchain\schema, also defining the same class, but exporting only a part of the methods. This looks like an interface.
When I try to load the OllamaEmbeddings interactively in my notebook, I have the same error. And when I remove the convert_to_openai_image_block function from the import statement:
from langchain_core.messages import AIMessage, BaseMessage, convert_to_messages
print(convert_to_messages)
from langchain_core import messages
print(messages)
<function convert_to_messages at 0x00000169A8185620>
<module 'langchain_core.messages' from 'E:\\U-DEVTOOLS\\Python-3.11.9\\Lib\\site-packages\\langchain_core\\messages\\__init__.py'>
Can someone explain what's going on ?
Reasons:
Blacklisted phrase (1): I have the same problem
RegEx Blacklisted phrase (2.5): Can someone explain what
RegEx Blacklisted phrase (1): I have the same error
I keep getting this message from Alexa - "I'm not quite sure what went wrong". Alexa does not accept verbal commands BUT I can set alarms and they work. How do I fix this. I'm 85 and know very little abt Alexa.
im having the same issue, i can fix it by adding keep alive at the root level in app.vue but cant get it working inside the exact way i want as i have to render something dynamically
I am trying to accomplish the same thing with airflow 3 and Microsoft entra using FAB.
As mentioned by Paulo, there is no webserver_config.py in the latest release. Should it be manually added in this case, according the default template?
As you said i tried the lowering the swd frequency in stm32cubeprogrammer from 4 Mhz to lower. Its now connected. but what is the reason it goes disconnected as of my application and what are the ways to get rid of it here after. kindly help me with that
I'm also encountering this issue but I can't get pass it. Can you share a more detailed answer on the fix you did? The WDIO automatic handling of dialog introduced in v9 does not seem to work on my end.
I have same problem when i provide ODATA Feed API from business central to overcome this problem i put ODATA feed API (upto odata V4/) in service document location in odata feed connector and remaining API(After odata V4) was put in resource path.
I am looking for same thing,i.e use the SendGrid API to send a request with our json object, but instead of sending the email to the client, receive the generated email body via some sendgrid API I tried above API call and it gives template html data with handle bars variables.I need HTML after those variables are filled in by the json object I can send to sendgrid API.
I need to do this also. I need the next 3 weeks of calendar entries, and a static url to retrieve that with. I can’t use dynamic url’s. Don’t really see what the point is of the calendar/events api if it doesn’t return data in calendarview format. Like OP says, it doesn’t return recurring events. But why would I want a set of calendar event data that doesn’t include certain entries just because they were created some time ago?
As recommended by @Lola, I reached out to the PDFForge support team. They stated this could not be done at this time. See quote below. Does anyone know if there is good third-party software out there that can accomplish what I am trying to do, or if there are past versions of PDFForge I could somehow install? Thank you.
Thank you for reaching out to PDF Forge Support.
We’d like to inform you that, unlike the .NET Framework, .NET Core and .NET 5+ currently do not support generating a COM Type Library (TLB) directly from a .NET assembly.
That said, we understand how important this feature is for many of our users. Our development team is actively exploring possible solutions to bring back TLB generation in a way that aligns with the newer .NET platforms. While this may take some time, we’re committed to finding a path forward and will keep you updated on any progress.
We truly appreciate your patience and understanding in the meantime. If you have any further questions or need assistance with alternatives, please don’t hesitate to reach out.
Any idea how to solve this? Same exception is happening for me now when I submit a EditForm. It leads to page reload and deleting all InputTexts values in page...
Reasons:
Blacklisted phrase (1): how to solve
RegEx Blacklisted phrase (1.5): how to solve this?
I am working on ionic app where have implemented google sso and apple sso. Previously we had issue, after even logout it was not clearing the cookies from the browser and if login again with sso it used previously account. Then we implemented cognito user pool logout url and now it is working in google sso in android but it is not working in ios.
Apple sso in ios is also working fine but ios doesn't show the list of emails in the device but still if we enter email and password in google sso for login, after login it logins directly without even asking email and password again.
can you help me how i can resolve this issue?
Thankyou
Reasons:
Blacklisted phrase (1): Thankyou
Blacklisted phrase (1): help me
RegEx Blacklisted phrase (1.5): resolve this issue?
I think I figured it out...I need to use dummy arrays and then create a final array...Please let me know if i am on the right path or if there might be a more efficient way - I will be crunching a LOT of data...
Thanks in advance for any advice.
Dim zeroRow() As Long
Dim tempArr As Variant
Dim tempIn() As Variant
tempArr = wsData.Range("Z" & lastRowData - 6 & ":AN" & lastRowData).Value
ReDim zeroRow(1 To 15)
For i = 1 To 15
zeroRow(i) = 0
Next i
ReDim tempIn(1 To 8, 1 To 15)
For i = 1 To 15
tempIn(1, i) = zeroRow(i)
Next i
For i = 1 To 8
For j = 1 To 15
tempIn(i + 1, j) = tempArr(i, j)
Next j
Next i
Reasons:
Blacklisted phrase (0.5): Thanks
Blacklisted phrase (0.5): I need
Whitelisted phrase (-2): I figured it out
RegEx Blacklisted phrase (2.5): Please let me know
I have encountered the same issue. I wonder if you have any references to support keeping the model (as my results do not show any other issues) albeit the warning? thank you in advance!
Reasons:
Blacklisted phrase (0.5): thank you
RegEx Blacklisted phrase (3): thank you in advance
As per @bitfiddler; "There is no state maintained between HTML pages. You need to submit data to a server and then place it in the new page using server-side code or use AJAX to talk to a server."