Skip to content

Commit

Permalink
detectors/gcp: revert sort CloudPlatform switch order
Browse files Browse the repository at this point in the history
Signed-off-by: Koichi Shiraishi <zchee.io@gmail.com>
  • Loading branch information
zchee committed Jun 9, 2023
1 parent 7920ef8 commit 0a7fa91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions detectors/gcp/detector.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ func (d *Detector) CloudPlatform() Platform {
switch {
case d.onGKE():
return GKE
case d.onCloudRun():
return CloudRun
case d.onCloudFunctions():
return CloudFunctions
case d.onCloudRun():
return CloudRun
case d.onAppEngineStandard():
return AppEngineStandard
case d.onAppEngine():
Expand Down

0 comments on commit 0a7fa91

Please sign in to comment.