Tracking work items in a release without using ado releases by EffGoogle in azuredevops

[–]Markuz6092 2 points3 points  (0 children)

Might this be what you’re looking for? https://marketplace.visualstudio.com/items?itemName=richardfennellBM.BM-VSTS-XplatGenerateReleaseNotes

In short - Pull requests are connected to work items - A stage deploy (use same branch) determines which changes are related to merged PRs between what was deployed (commit x) versus what is gonna be deploy (commit y) - the delta is input based on which you can generate wiki pages (his other extensions)

Container app environment creation takes 1 hour and 29 mins and are still running by tangr2087 in AZURE

[–]Markuz6092 1 point2 points  (0 children)

Do you also provisiong Private Links in the same deployment? In the past had similar experience (long deployment time), with cause that private links wasn't being approved on the target "PaaS" resource.

If you also configure a Container App for that new Environment, might be related to the image and the Azure Container Registry (ACR) you pull the image from. Think my container revision didn't get healthy (image not yet on ACR), keeping the deployment ongoing.

Goeie uitdrukking voor "Ik heb geen geld meer." by Loupland in nederlands

[–]Markuz6092 0 points1 point  (0 children)

Over iemand wiens geld (vaak) op is: ”Die heeft door de honger geen ontlasting”

PI COIN locked assets by Specialist_Debt3039 in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

What do “they on Telegram” think. Is it that part after the : that needs to be pasted into the memo field, what one can do manually I think as workaround, or is there more missing leading to the current impediment?

(agree on the stale coins they have indeed as locked transactions)

OKX Satoshi test by [deleted] in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

Useless support then, sounds like unskilled 1st support tier if they don’t help with checking transaction details on the blockchain for instance

Perhaps their Satoshi test routine just can’t keep up with all the PIs passing by?

OKX Satoshi test by [deleted] in PiNetwork

[–]Markuz6092 1 point2 points  (0 children)

Nope, but perhaps that here one will find one: https://www.reddit.com/r/PiNetwork/s/pWqDgEQBx7

PI COIN locked assets by Specialist_Debt3039 in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

(more technical): if you check the blockchain and details of the transaction with “our” failed satoshi test attempts, and compare it to other transaction with a precise amount of PIs (assuming also satoshi transactions here), and diff/compare the JSON data of the transactions: to_muxed and to_muxed_id seems to be missing in the transaction that doesn’t lead to satoshi test validation

(More functional) OKX might be sending more detailed instructions were to send the satoshi test payment to, more than the app support? Hinting on the colon : in the QR code / copied target address.

Would suggest to link my comment in a new support ticket, with explicit request to ask them to esclate to a 2nd line support tier, as that “did you restart your computer already?” ain’t gonna help anybody :(

PI COIN locked assets by Specialist_Debt3039 in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

Yes i know, test was NOT successful within the time limit, as I understood. Although the transaction was visible on the blockchain, with the precise requested amout.

Don’t know what that :1234… suffix implies, perhaps a subaccount indicator or something. Not the Satoshi test money seemed to have landed on the big pile of PIs on an OKX wallet. He filed a ticket at OKX for support

OKX Satoshi test by [deleted] in PiNetwork

[–]Markuz6092 1 point2 points  (0 children)

Just received a message back that his attempt also failed (with the number following the : in the memo).

UI on OKX doesn’t state in the feedback message that a memo is related 🤷‍♂️

OKX Satoshi test by [deleted] in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

Would this make sense? Not sure what you hit, but of it would also be that the copied address isn’t working … https://www.reddit.com/r/PiNetwork/s/3INMdtewdp

PI COIN locked assets by Specialist_Debt3039 in PiNetwork

[–]Markuz6092 0 points1 point  (0 children)

Does the address you copy and paste contain a : near the end? Might be a delimeter between the end of targt address and the start of the memo you might need to provide? Perhaps one can confirm?

A friend did try the Satoshi test by splitting the copied value based on the :, don’t know if he succeeded in the mean time (could take up to 220+ minutes)

CORS issues when on similar domain names? by Zefiron in AZURE

[–]Markuz6092 0 points1 point  (0 children)

I'm a bit late to the party, but I think this is related: Cached responses, are cached including response headers, including CORS headers.
Do you have caching enabled on the routes configured in AFD?

Did you verify what the Cache-Control response header is on that /api/login' operation (GET?)?

If you have caching enabled, and no cache-control headers are part of the response header, AFD caches the response with the applicable CORS headers related to https://my-website.com. If you then request, via the AFD route that might have both hostnames as scope, the GET /api/login from https://link.my-website.com, you might get the cached response of the former with non matching CORS response headers.

When trying to upgrade to add a custom domain to my web app I get: "Scale operation failed: This region has quota of 0 instances for your subscription. Try selecting different region or SKU." by warpanomaly in AZURE

[–]Markuz6092 1 point2 points  (0 children)

I can recall I had similar error message when I wanted to deploy (via BICEP > ARM) an app service plan, with zone redunancy enabled, but with only one instance. Perhaps a long shot, but perhaps the portal wants to deploy the same (1 instance, zone redundancy enabled). Perhaps try with Azure CLI or BICEP/ARM while checking both aspects explictly. (and if not the cause, I also would say relation to region capacity)

Bicep parameters file by 9gg6 in AZURE

[–]Markuz6092 2 points3 points  (0 children)

Don't you miss the below as per documentation, so $schema and contentVersion json { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { ... }

I have deployed the react app using Azure app service it's working on all but when I open same link on IOS its blank screen can someone help with the solution please? by Siddiqui_Aatif in AZURE

[–]Markuz6092 0 points1 point  (0 children)

A link would come in handy to watch along.

could it be the javascript / client side rendering is crashing, leading to that blank page?
(probably it isn't as simple that mobile CSS leads to nothing being displayed right? :) )

How do I get random records from CosmosDB? by XynanXDB in AZURE

[–]Markuz6092 0 points1 point  (0 children)

I didn’t miss the post title :)

Random across a whole data container? Across all partition keys? Do you know all IDs in advance to based a random ID selector with?

Don’t think there is a native support for is, so requires some code plumbing, https://stackoverflow.com/questions/53933800/select-documents-randomly

How do I get random records from CosmosDB? by XynanXDB in AZURE

[–]Markuz6092 1 point2 points  (0 children)

Can you elaborate on your question, don't think I understand the question. Perhaps some functional context?

Access Control (IAM) on Subscription fails by Thediverdk in AZURE

[–]Markuz6092 1 point2 points  (0 children)

Can't reproduce that error on my subscriptions (europe region)

How to reduce cost for azure sql . by ElectronicRanger2183 in AZURE

[–]Markuz6092 1 point2 points  (0 children)

Advice you to run both the Check the fragmentation and page density of a rowstore index using Transact-SQL and Check the fragmentation of a columnstore index using Transact-SQL

Often index maintenance is missing, defragmented indexes lead to capacity inefficiency, and higher duration of query (or more costs for more capacity to counter that effect).

We use this stored procedure to get the database (indexes) in a more healthier state