Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
7c47a33a
Commit
7c47a33a
authored
Mar 28, 2023
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_jio: Improve error message from status gadget
In this way, the debug becomes easier to be notified.
parent
e1f8358b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
master/bt5/slapos_jio/PathTemplateItem/web_page_module/rjs_gadget_slapos_status_js.js
...mplateItem/web_page_module/rjs_gadget_slapos_status_js.js
+8
-4
master/bt5/slapos_jio/PathTemplateItem/web_page_module/rjs_gadget_slapos_status_js.xml
...plateItem/web_page_module/rjs_gadget_slapos_status_js.xml
+2
-2
No files found.
master/bt5/slapos_jio/PathTemplateItem/web_page_module/rjs_gadget_slapos_status_js.js
View file @
7c47a33a
/*globals console, window, rJS,
i18n, domsugar
*/
/*globals console, window, rJS,
domsugar, JSON
*/
/*jslint indent: 2, nomen: true, maxlen: 80 */
(
function
(
window
,
rJS
,
domsugar
)
{
(
function
(
window
,
rJS
,
domsugar
,
JSON
)
{
"
use strict
"
;
var
gadget_klass
=
rJS
(
window
);
...
...
@@ -338,7 +338,7 @@
.
onLoop
(
function
()
{
var
gadget
=
this
;
if
(
gadget
.
state
.
jio_key
)
{
if
(
typeof
gadget
.
state
.
jio_key
===
'
string
'
&&
gadget
.
state
.
jio_key
!==
''
)
{
return
gadget
.
jio_get
(
gadget
.
state
.
jio_key
)
.
push
(
function
(
result
)
{
var
state_dict
=
result
.
news
||
{};
...
...
@@ -346,6 +346,10 @@
return
gadget
.
changeState
(
state_dict
);
});
}
throw
new
Error
(
'
jio_key dont contains a proper value:
'
+
JSON
.
stringify
(
gadget
.
state
.
jio_key
)
);
},
300000
)
.
onStateChange
(
function
()
{
...
...
@@ -360,4 +364,4 @@
return
this
.
changeState
(
state_dict
);
});
}(
window
,
rJS
,
domsugar
));
\ No newline at end of file
}(
window
,
rJS
,
domsugar
,
JSON
));
\ No newline at end of file
master/bt5/slapos_jio/PathTemplateItem/web_page_module/rjs_gadget_slapos_status_js.xml
View file @
7c47a33a
...
...
@@ -278,7 +278,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
100
1.50668.64434.58
0
</string>
</value>
<value>
<string>
100
6.58340.40727.2362
0
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -298,7 +298,7 @@
</tuple>
<state>
<tuple>
<float>
16
60581838.54
</float>
<float>
16
80031759.77
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment