We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2effaa8 commit e174783Copy full SHA for e174783
app/graphql/types/runtime_status_type.rb
@@ -4,7 +4,7 @@ module Types
4
class RuntimeStatusType < BaseEnum
5
description 'Represent all available types of statuses of a runtime'
6
7
- value :CONNECTED, 'No problem with connection, everything works as expected', value: :connected
8
- value :DISCONNECTED, 'The runtime is disconnected, cause unknown', value: :disconnected
+ value :CONNECTED, 'No problem with connection, everything works as expected', value: 'connected'
+ value :DISCONNECTED, 'The runtime is disconnected, cause unknown', value: 'disconnected'
9
end
10
0 commit comments