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 4406541 commit a9bb532Copy full SHA for a9bb532
backend/apps/automate_service_port_engine/src/automate_service_port_engine_configuration.erl
@@ -288,13 +288,20 @@ get_versioning(Nodes) ->
288
289
{atomic, ok} = mnesia:transform_table(
290
?USER_TO_BRIDGE_CONNECTION_TABLE,
291
- fun({user_to_bridge_connection_entry
292
- , Id, BridgeId, Owner, ChannelId, Name, CreationTime
293
- }) ->
294
- {user_to_bridge_connection_entry
295
296
- , false
297
- }
+ fun(Entry) ->
+ case Entry of
+ { user_to_bridge_connection_entry
+ , Id, BridgeId, Owner, ChannelId, Name, CreationTime
+ } ->
+ {user_to_bridge_connection_entry
298
+ , false
299
+ };
300
301
302
+ , SaveSignals} ->
303
+ Entry
304
+ end
305
end,
306
[ id, bridge_id, owner, channel_id, name, creation_time, save_signals ],
307
user_to_bridge_connection_entry
0 commit comments