Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eduGAIN Technical Site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
edugain
eduGAIN OT
eduGAIN Technical Site
Merge requests
!11
fixing the output format of edugain_status
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fixing the output format of edugain_status
cherry-pick-955c364e
into
psnc-production
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Tomasz Wolniewicz
requested to merge
cherry-pick-955c364e
into
psnc-production
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
(cherry picked from commit
955c364e
)
0
0
Merge request reports
Compare
psnc-production
psnc-production (base)
and
latest version
latest version
92ca4bc9
1 commit,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
lib/API.php
+
2
−
2
Options
@@ -600,7 +600,7 @@ class API {
when no federation code is present an array of code-indexed participating federations with details as described above'
],
'examples'
=>
[
[
'opt'
=>
[
'only_errors'
],
'title'
=>
'only fedrations with problems'
,],
[
'opt'
=>
[
'only_errors'
=>
1
,
],
'title'
=>
'only fedrations with problems'
,],
[
'opt'
=>
[
'fed_id'
=>
'PIONIER-ID'
,],
'title'
=>
'show status of PIONIER.Id'
,],
[
'opt'
=>
[
'fed_id'
=>
'PIONIER-ID'
,],
'format'
=>
'json'
,
'title'
=>
'show status of PIONIER.Id in JSON'
,]
]
@@ -620,7 +620,7 @@ class API {
}
foreach
(
$edugain
->
FEDS
as
$fed
)
{
if
(
$fed
[
'feed_problem'
]
>
0
||
$fed
[
'valid_sec'
]
<
$sec
)
{
$out
[]
=
$fed
;
$out
[
$fed
[
'code'
]
]
=
$fed
;
}
}
Loading