Alen Alex
CDCloudflare Developers
•Created by ko on 3/7/2025 in #workers-help
I can't create and set new token from Workers Settings
Yeah, let me try it out
8 replies
CDCloudflare Developers
•Created by ko on 3/7/2025 in #workers-help
I can't create and set new token from Workers Settings
Weird, the issue still persist for me...
8 replies
CDCloudflare Developers
•Created by ko on 3/7/2025 in #workers-help
I can't create and set new token from Workers Settings
Bumping it...
I am also facing the same issue...Is there any fix for this?
8 replies
CDCloudflare Developers
•Created by Alen Alex on 10/7/2024 in #r2
Hi, hope you all are having good day...

2 replies
CDCloudflare Developers
•Created by Alen Alex on 10/7/2024 in #r2
Hi, hope you all are having good day...
This is my CORS policy configured...
2 replies
What do use in a multi-threaded environment?Dictionary with lock OR ConcurrentDictionary?
My answer would be, its a ready made, time tested solution for accessing dictionary in a concurrent way.
Yes, if you need you can take the approach of manual locking, but for me, why reinventing the wheel, I would already have a lot of other logic to take care of
6 replies
Static property override
as apprendeur said, static lies outside the concept of oops, so you can't achieve dynamic configuration binding like this unless you instantate it as an object...
2 way I can suggest is...
1) Use reflection to get the class name and the classname can be the one that key
2) You can use Attributes and play along a bit with it
26 replies
System.AggregateException: 'Some services are not able to be constructed
If you want to use the configuration which is binded to a class (Options Pattern), you need to wrap the
FlightLegAggregatorSettings
in IOptions<FlightLegAggregatorSettings>
, instead of simply passing the class.
https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options?view=aspnetcore-8.0#the-options-pattern4 replies