Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
5c144ac
add AZ support
StrawnSC May 16, 2022
340e37d
Merge pull request #105 from StrawnSC/az-aca
StrawnSC May 16, 2022
a637114
bump version, add history, fix style
StrawnSC May 16, 2022
5d85708
auto-register Microsoft.App RP
StrawnSC May 16, 2022
f51df48
autoregister on containerapp and env create
StrawnSC May 16, 2022
a51745a
Finished auth microsoft.
May 18, 2022
dac8c2f
Added prototypes of other identity providers.
May 18, 2022
522e6dd
Added param help.
May 18, 2022
9be335b
Added error handling for no easy auth case.
May 18, 2022
0eca228
Adding cmds & tests for Container app certs & domains (#107)
lil131 May 19, 2022
8185b3f
Merge branch 'containerapp-0.3.5' into autoregister-msft.app
StrawnSC May 19, 2022
59369f7
Added auth update and show.
May 19, 2022
1185d69
Moved utils to utils. Removed CLIErrors from old code. Removed commen…
May 19, 2022
ea0283d
fixes for CI
StrawnSC May 19, 2022
9a85503
use capps RP constant
StrawnSC May 19, 2022
6f2943c
Merge pull request #106 from StrawnSC/autoregister-msft.app
StrawnSC May 19, 2022
430cee2
rerecord tests; add credscan suppressions
StrawnSC May 19, 2022
873e531
Fixed style issues. Fixed sdk version.
May 19, 2022
5c87013
more CI fixes
StrawnSC May 19, 2022
8ad4ae0
Fixed merge conflicts.
May 19, 2022
11aeb5e
Updated history. Changed constant values instead of using python meth…
May 19, 2022
873a15f
Added help text for subgroups with examples.
May 19, 2022
e7137ff
Updated util. Fixed style issues.
May 19, 2022
8d31890
Merge pull request #108 from haroonf/authconfig
StrawnSC May 19, 2022
433433a
Revert "Add auth subgroups" (#109)
runefa May 19, 2022
90bfb2a
use new microsoft.graph API
StrawnSC May 4, 2022
baf9342
wip
StrawnSC May 20, 2022
d4f6cec
remove unused function
StrawnSC May 20, 2022
054db9b
Removed AuthClient sdk.
May 20, 2022
bbc1842
Added back AuthConfig.
May 20, 2022
8d31f6a
Removed old references. Limited oidc provider secret name. Fixed warn…
May 20, 2022
de354e6
Fixed facebook show bug.
May 20, 2022
87099c6
adding hostname tests with ASD
lil131 May 20, 2022
8f31760
fix location & add more test cases
lil131 May 20, 2022
b7f37a1
minor changes
lil131 May 20, 2022
699d2fc
rm redundant whitespaces
lil131 May 20, 2022
2ba057f
mark custom domain test as live_only
lil131 May 20, 2022
e3b3a59
Fixed error handling.
May 20, 2022
cf297ae
rm yaml files
lil131 May 21, 2022
2d39def
Merge pull request #110 from StrawnSC/microsoft.graph
StrawnSC May 22, 2022
4739052
add breaking change history note
StrawnSC May 22, 2022
a6fb46d
Merge pull request #112 from lil131/location-fix
StrawnSC May 22, 2022
1e977dd
Merge branch 'containerapp-0.3.5' into authconfig
StrawnSC May 22, 2022
e5237b6
bug fix in 'az containerapp auth update'
StrawnSC May 22, 2022
4b9eaab
Merge pull request #111 from haroonf/authconfig
StrawnSC May 22, 2022
8124269
remove dependencies on core CLI role module functions
StrawnSC May 22, 2022
0ae7357
remove 'BREAKING CHANGE' from history entry
StrawnSC May 23, 2022
6c86217
resolve PR comments
StrawnSC May 23, 2022
b671136
add test recording and remove live_only
StrawnSC May 23, 2022
881dbd8
make live only test live_only again
StrawnSC May 23, 2022
59eb990
remove unnecessary option lists
StrawnSC May 23, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused function
  • Loading branch information
StrawnSC committed May 20, 2022
commit d4f6cecb0c299c55b65d598e57718b67781c124e
10 changes: 0 additions & 10 deletions src/containerapp/azext_containerapp/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,6 @@ def validate_container_app_name(name):
f"Please shorten {name}")


def poll(timeout_secs, interval_secs, operation_name="operation", poll_until=None, *args, **kwargs):
start = datetime.utcnow()
while (datetime.utcnow() - start).seconds < timeout_secs:
stop = poll_until(*args, **kwargs)
if stop:
return
time.sleep(interval_secs)
raise CLIInternalError(f"Timed out while waiting for {operation_name} to complete")


def retry_until_success(operation, err_txt, retry_limit, *args, **kwargs):
try:
return operation(*args, **kwargs)
Expand Down