Skip to content

Commit 1308d85

Browse files
authored
Merge pull request #706 from code0-tech/fix-runtime-status
Fix runtime status type to be a string instead of a symbol
2 parents bb3b369 + e174783 commit 1308d85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/graphql/types/runtime_status_type.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Types
44
class RuntimeStatusType < BaseEnum
55
description 'Represent all available types of statuses of a runtime'
66

7-
value :CONNECTED, 'No problem with connection, everything works as expected', value: :connected
8-
value :DISCONNECTED, 'The runtime is disconnected, cause unknown', value: :disconnected
7+
value :CONNECTED, 'No problem with connection, everything works as expected', value: 'connected'
8+
value :DISCONNECTED, 'The runtime is disconnected, cause unknown', value: 'disconnected'
99
end
1010
end

0 commit comments

Comments
 (0)